diff --git a/CHANGELOG.md b/CHANGELOG.md index b7dac32..58b98df 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## v0.2.1 (2024-06-24) + +### Fix + +- Fix license classifier (#3) ([`87bfc29`](https://github.com/Bluetooth-Devices/aiozoneinfo/commit/87bfc29448ab6c9915428a263da62aadda8dbf48)) + ## v0.2.0 (2024-06-17) ### Feature diff --git a/docs/conf.py b/docs/conf.py index dcfb886..1c73fa2 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -7,7 +7,7 @@ project = "aiozoneinfo" copyright = "2024, J. Nick Koston" author = "J. Nick Koston" -release = "0.2.0" +release = "0.2.1" # General configuration extensions = [ diff --git a/pyproject.toml b/pyproject.toml index a31ad79..b2ce4ab 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "aiozoneinfo" -version = "0.2.0" +version = "0.2.1" description = "Tools to fetch zoneinfo with asyncio" authors = ["J. Nick Koston "] readme = "README.md" diff --git a/src/aiozoneinfo/__init__.py b/src/aiozoneinfo/__init__.py index 615eda2..2d7ecd9 100644 --- a/src/aiozoneinfo/__init__.py +++ b/src/aiozoneinfo/__init__.py @@ -1,6 +1,6 @@ from __future__ import annotations -__version__ = "0.2.0" +__version__ = "0.2.1" import asyncio import weakref