diff --git a/CHANGELOG.md b/CHANGELOG.md index 84498db..ec1b20e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,15 +1,20 @@ -2.0.11 +2.0.12 API Version 5.5.6! # Hondana Changelog ## Added -- Add `Client.get_manga` method to be more consistent with the rest of the Client methods, see notes below. (588c2fdc2956db5435c2aa5792281d3a78ef7396) +- `hondana.Relationship` type was added as a container type to relationship keys in payloads. (684447e75088302d42ca803ca31eee190a4aafdd) +- Added `.relationship` property to all relevant types to use the new `Relationship` container. (8d2c7584879a14a0e47fdcbe23497efe1ac8b7e7) ## Changes +- `Client.dump_refresh_token` is now kwarg only, and now accepts a `file` kwarg, which controls if it dumps to a file or not. (c5a348eaeb1a650c5ddd3efc29b3cdd8a3899772) +- Reworked internals of `Client.update_tags` to use the new `Client.get_tags`. (f4dc77aab922e8a33537be09af80763a1d40171d) ## Fixes +- Rare case where `Manga.description` can `AttributeError` due to PHP-isms. (6bc91d03ca10052038397205e8bced35734434fe) +- Add extra layer of http request handling. (18434dcd3be880660828dd3d3503f74c926fe1de) ### Notes - `Client.view_manga` method has been marked as deprecated in favour of `Client.view_manga` and will be removed in version 3.0. (588c2fdc2956db5435c2aa5792281d3a78ef7396) diff --git a/hondana/__init__.py b/hondana/__init__.py index 6d57709..d40b30f 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.11" +__version__ = "2.0.12" import logging from typing import Literal, NamedTuple @@ -63,6 +63,6 @@ class VersionInfo(NamedTuple): serial: int -version_info: VersionInfo = VersionInfo(major=2, minor=0, micro=11, releaselevel="final", serial=0) +version_info: VersionInfo = VersionInfo(major=2, minor=0, micro=12, releaselevel="final", serial=0) logging.getLogger(__name__).addHandler(logging.NullHandler()) diff --git a/pyproject.toml b/pyproject.toml index 9a8b3f9..3737eaa 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "Hondana" -version = "2.0.11" +version = "2.0.12" description = "An asynchronous wrapper around the MangaDex v5 API" authors = ["Alex Nørgaard "]