diff --git a/CHANGELOG.md b/CHANGELOG.md index a8aa2ec..b120b3a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -2.1.2 +2.2.0 API Version 5.5.7! @@ -7,15 +7,11 @@ API Version 5.5.7! ## Added ## Changes +- This release is purely an optimization change, all commits between the last release and now (fd684d0bccac3b91c735a2310931f602ba7bc82a..b304a96d51f143aebe76c2c8816d6345a7b70117) were purely for these reasons. ## Fixes -- `ScanlatorGroup.publish_delay` is now (correctly) Optional. (2ae4806997cae6e54e785c4e6e906ffd6a9032f3) -- New utility added and utilised for sending datetimes to mangadex. It now cleans and coverts them to UTC from aware timezones. (11ff66854a82168a2fa0bce104f82d7fb63469f4) -- `Cover.url` now supports passing a parent manga id, as it is generally a "sub-relationship" meaning it has no relationships to parse for the parent manga. (802795d9f92a3d06e0e1bcb21d1602a6ad0c3b67) ### 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) -- Due to this being a fix release, there is some pending internal changes that are not fully implemented across the board. ### Noted Contributors @Axelancerr - cleaning up my bad grammar all year 'round. diff --git a/hondana/__init__.py b/hondana/__init__.py index 0d6f5e4..ae58049 100644 --- a/hondana/__init__.py +++ b/hondana/__init__.py @@ -26,7 +26,7 @@ __author__ = "AbstractUmbra" __license__ = "MIT" __copyright__ = "Copyright 2021-present AbstractUmbra" -__version__ = "2.1.2" +__version__ = "2.2.0" import logging from typing import Literal, NamedTuple @@ -63,6 +63,6 @@ class VersionInfo(NamedTuple): serial: int -version_info: VersionInfo = VersionInfo(major=2, minor=1, micro=2, releaselevel="final", serial=0) +version_info: VersionInfo = VersionInfo(major=2, minor=2, micro=0, releaselevel="final", serial=0) logging.getLogger(__name__).addHandler(logging.NullHandler()) diff --git a/pyproject.toml b/pyproject.toml index f872d17..108541c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "Hondana" -version = "2.1.2" +version = "2.2.0" description = "An asynchronous wrapper around the MangaDex v5 API" authors = ["Alex Nørgaard "]