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 Nov 2, 2022
1 parent 40a349e commit 7a2df38
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 7 deletions.
12 changes: 8 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,17 +1,21 @@
3.4.3
3.4.4

API Version 5.7.4b
API Version 5.7.5

# Hondana Changelog
API Release!

## Added
- Tag filtering on `Client.get_random_manga()` has been added. (56de42140db46fbba3be5403b3321bede87b4795)
- New `author_or_artist` parameter on several methods for filter by a specific UUID that related to an author or artist of your choice. (fc8db94bc7b59d198a8227cbd9c6c03802d81c59)
- Mainly affects `Client.manga_list()`
- Added missing pagination parameters and docstring entries for `Manga.get_related_manga()` and `CustomList.get_manga()`. (28903d40630d115240dbdee35286579ee8e8c31e)
- Add new filtering on chapter list endpoint (`Client.chapter_list()`). (b1178a3ea25c831577def282fb856dcf1f43687c)

## Changes

## Fixes
- Tests are now fixed due to corrected payload data on the MD side.
- New internal type to encompass all possible report reasons is now used in all relevant places. (40620dc6dbaa65f6977c7fe9727758fc3c6199dc)
- Docstring for `utils.php_query_builder()` has been amended. (1c8da4e393d5c77979409f2f8f98d7f6d058b253)

### Notes

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__ = "3.4.3"
__version__ = "3.4.4"

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


version_info: VersionInfo = VersionInfo(major=3, minor=4, micro=3, releaselevel="final", serial=0)
version_info: VersionInfo = VersionInfo(major=3, minor=4, micro=4, releaselevel="final", serial=0)

logging.getLogger(__name__).addHandler(logging.NullHandler())

Expand Down
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 = "3.4.3"
version = "3.4.4"
description = "An asynchronous wrapper around the MangaDex v5 API"
authors = ["Alex Nørgaard <[email protected]>"]

Expand Down

0 comments on commit 7a2df38

Please sign in to comment.