diff --git a/CHANGELOG.md b/CHANGELOG.md index d2c88ca..94f9132 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,15 +1,17 @@ -2.0.8 +2.0.9 -API Version 5.5.3! +API Version 5.5.4! # Hondana Changelog -**Fix release.** ## Added -- `Manga.available_translated_languages` was added, a list of LanguageCode this manga has chapters translated for. (f26e49f22c03085aac06866bb108e72885e379a1) ## Changes ## Fixes +- `version` kwarg in `Manga.submit_draft` and `Client.submit_manga_draft` is now required. (c430eeed2174298618cc436aeb2405ce5b9ff65a) +- `Client.get_manga_statistics` and `Client.find_manga_statistics` does not require auth. (9f1d6df5218916477131c0462f807010dc2b2b89) +- Cleanup some issues in the `use_logging.py` example. (fd4e419dc68169f67637ddd5c0cd0fc0cd04b490) +- Types of `MangaStatistics.distribution` were wrong, this has been corrected. (Thanks Pokestar) (2b34ad1bab994d84681cf507d8e8d9e2af4c94c1) ### Notes diff --git a/hondana/__init__.py b/hondana/__init__.py index 1598285..80d77b7 100644 --- a/hondana/__init__.py +++ b/hondana/__init__.py @@ -26,7 +26,7 @@ __author__ = "AbstractUmbra" __license__ = "MIT" __copyright__ = "Copyright 2021-present AbstractUmbra" -__version__ = "2.0.8" +__version__ = "2.0.9" import logging from typing import Literal, NamedTuple @@ -62,6 +62,6 @@ class VersionInfo(NamedTuple): serial: int -version_info: VersionInfo = VersionInfo(major=2, minor=0, micro=8, releaselevel="final", serial=0) +version_info: VersionInfo = VersionInfo(major=2, minor=0, micro=9, releaselevel="final", serial=0) logging.getLogger(__name__).addHandler(logging.NullHandler()) diff --git a/pyproject.toml b/pyproject.toml index 3d2f004..e6e0362 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "Hondana" -version = "2.0.8" +version = "2.0.9" description = "An asynchronous wrapper around the MangaDex v5 API" authors = ["Alex Nørgaard "]