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 19, 2022
1 parent 7a3828d commit 6e9c472
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 8 deletions.
14 changes: 9 additions & 5 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,16 +1,20 @@
2.0.1
2.0.2

API Version 5.4.9!
API Version 5.4.10!

# Hondana Changelog

## Added
- `LegacyMappingCollection` was added as it was missed with the last batch. (056925a05f36d2711c740e0ba92f7f3edf264f70)
- `Chapter.manga_id` property added to retrieve the parent manga id from the payload (if present). (26464a41a1e95cbe6f26fd76470924199a87b1e0)

## Changes
- `Manga.title` property now defaults to the `Manga.original_language` lookup key, not `"en"`. (64d0f703c6b491a11c946ed0b9868b3ee1c13210)
- `limit` parameter is now Optional in some endpoints to allow retrieval of maximum possible objects from the API with multiple requests. (64b383e3f970c53614f762371fedfadaa4e63f64)
- Internal change for the inner MD@H report http method kwarg only. (d22cbf5033692ffe9eef7fe28d995545d71ba1fb)
- Internal change for how collection endpoints managed their logic to return feeds. (7a3828d0f790a50e5600173f107ed52585c9d94e)

## Fixes
- `includes` parameter on `Client.get_chapter` was broken, this has been resolved. (d136064c7c1d3c154b1fb8cf8768c8debe264059)
- `Chapter.uploader` and `Chapter.scanlator_groups` now correctly get the data, which was initially caused by incorrect docs. (9bb7973a692155799eb9237e49b1beda12e7da1b)
- MD@H reports were erroring out when trying to report on `uploads.mangadex.org`, this has now been fixed. (cd33a6e816a130bbbfa628371c17198bdb978ffb)
- Inner payload types were amended to account for bad docs. (97a5c6ad4731d72b22972c181a8ac6d0c0d5b847)

### Notes
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__ = "2.0.2a"
__version__ = "2.0.2"

import logging
from typing import Literal, NamedTuple
Expand Down Expand Up @@ -62,6 +62,6 @@ class VersionInfo(NamedTuple):
serial: int


version_info: VersionInfo = VersionInfo(major=2, minor=0, micro=2, releaselevel="alpha", serial=0)
version_info: VersionInfo = VersionInfo(major=2, minor=0, micro=2, 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 = "2.0.2a"
version = "2.0.2"
description = "An asynchronous wrapper around the MangaDex v5 API"
authors = ["Alex Nørgaard <[email protected]>"]

Expand Down

0 comments on commit 6e9c472

Please sign in to comment.