diff --git a/CHANGELOG.md b/CHANGELOG.md index 3c6ad36..569260e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +# v1.0.1 (Sep 2024) + +## Additions + +- Added two new boss metrics `Amoxliatl` and `Hueycoatl`. + +--- + # v1.0.0 (Sep 2024) Stable! diff --git a/pyproject.toml b/pyproject.toml index 06d1f96..645166b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "wom.py" -version = "1.0.0" +version = "1.0.1" description = "An asynchronous wrapper for the Wise Old Man API." authors = ["Jonxslays"] license = "MIT" diff --git a/wom/__init__.py b/wom/__init__.py index a4a24ac..67f7846 100644 --- a/wom/__init__.py +++ b/wom/__init__.py @@ -32,7 +32,7 @@ from typing import Final __packagename__: Final[str] = "wom.py" -__version__: Final[str] = "1.0.0" +__version__: Final[str] = "1.0.1" __author__: Final[str] = "Jonxslays" __copyright__: Final[str] = "2023-present Jonxslays" __description__: Final[str] = "An asynchronous wrapper for the Wise Old Man API."