diff --git a/CHANGELOG.md b/CHANGELOG.md index 94f9132..8241543 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,17 +1,15 @@ -2.0.9 +2.0.10 -API Version 5.5.4! +API Version 5.5.6! # Hondana Changelog ## Added +- Added `content_rating` kwarg to `Client.get_random_manga()`. (2f6f018316424b2fa2e13d672747982308936e7d) ## 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) +- Types of `MangaStatistics.average` were wrong, this has been corrected. (Thanks Pokestar) (fee0a4993669153cdcf22d88af9002bd482c724e) ### Notes diff --git a/hondana/__init__.py b/hondana/__init__.py index 80d77b7..1f6e0bf 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.9" +__version__ = "2.0.10" 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=9, releaselevel="final", serial=0) +version_info: VersionInfo = VersionInfo(major=2, minor=0, micro=10, releaselevel="final", serial=0) logging.getLogger(__name__).addHandler(logging.NullHandler()) diff --git a/pyproject.toml b/pyproject.toml index e6e0362..b4d5067 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "Hondana" -version = "2.0.9" +version = "2.0.10" description = "An asynchronous wrapper around the MangaDex v5 API" authors = ["Alex Nørgaard "]