diff --git a/CHANGELOG.md b/CHANGELOG.md index a7a7198..f973b8f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,18 +1,15 @@ -1.1.8 +1.1.9 -API Version 5.4.6! +API Version 5.4.7! # Hondana Changelog ## Added -- `Manga.status` now exists to tell you the current publication status. (7d2b8e8e1a0e86f26b69d87dced840dc80bfa686) -- `Manga.state` now exists to tell you about the release state. (7d2b8e8e1a0e86f26b69d87dced840dc80bfa686) -- `MangaStatistics.follows` now shows you the amount of total follows a manga has. (d28ae1596bf772fe7bdad167caafbbef20f90e08) -- `Chapter.pages` now exists to show the total amount of pages a chapter has, following the removal of the `data` and `dataSaver` keys from the Chapter payload. (d28ae1596bf772fe7bdad167caafbbef20f90e08) +- `Client.fetch_manga_statistics` was added as a batch endpoint for manga statistics. () ## Changes -- `Manga.tags` is not built on the construction of `Manga` objects from their payloads. This is to offset the property running each time. (c32c7f5c87cf1c8b089209a0d0a3ead2c0dfefa7) - +- `Client.get_manga_statistics` was changed to only accept a single Manga ID as the parameter. () +- `MangaStatistics.distribution` is now an Optional value due to it only being populated on the non-batch (`Client.get_manga_statistics` and `Manga.get_statistics`) endpoint. () ## Fixes diff --git a/hondana/__init__.py b/hondana/__init__.py index 77ba2e3..2f45ec4 100644 --- a/hondana/__init__.py +++ b/hondana/__init__.py @@ -26,7 +26,7 @@ __author__ = "AbstractUmbra" __license__ = "MIT" __copyright__ = "Copyright 2021-present AbstractUmbra" -__version__ = "1.1.8" +__version__ = "1.1.9" import logging from typing import Literal, NamedTuple @@ -60,6 +60,6 @@ class VersionInfo(NamedTuple): serial: int -version_info: VersionInfo = VersionInfo(major=1, minor=1, micro=8, releaselevel="final", serial=0) +version_info: VersionInfo = VersionInfo(major=1, minor=1, micro=9, releaselevel="final", serial=0) logging.getLogger(__name__).addHandler(logging.NullHandler()) diff --git a/pyproject.toml b/pyproject.toml index 8ce55b4..8e4d5b4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "Hondana" -version = "1.1.8" +version = "1.1.9" description = "An asynchronous wrapper around the MangaDex v5 API" authors = ["Alex Nørgaard "]