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 15, 2022
1 parent 1972e34 commit 96c4ba2
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 12 deletions.
15 changes: 6 additions & 9 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,22 +1,19 @@
3.4.4
3.4.5

API Version 5.7.5

# Hondana Changelog
API Release!
Fix Release.

## Added
- 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)

- Python 3.11 CI builds. (c6676fc5e83166aef87ff68931a2d4ce1549ebef)
-
## Changes

## Fixes
- 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)
- Fix handling enums in query builder changes. (1972e34839a35a421daf34e06c75677190172e2b)

### Notes
- Can confirm that `hondana` works in Python 3.11 provided you can build the required dependencies.

### Noted Contributors
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.4"
__version__ = "3.4.5"

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

Expand Down

0 comments on commit 96c4ba2

Please sign in to comment.