Skip to content

Commit

Permalink
version bump and changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
AbstractUmbra committed Jan 4, 2022
1 parent 6c77846 commit c5efdbd
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 11 deletions.
13 changes: 5 additions & 8 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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

Expand Down
4 changes: 2 additions & 2 deletions hondana/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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())
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -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 <[email protected]>"]

Expand Down

0 comments on commit c5efdbd

Please sign in to comment.