From 7a2df380561701c1b730bd943bd45ecc2dac39d4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alex=20N=C3=B8rgaard?= Date: Wed, 2 Nov 2022 01:59:26 +0000 Subject: [PATCH] version bump and changelog --- CHANGELOG.md | 12 ++++++++---- hondana/__init__.py | 4 ++-- pyproject.toml | 2 +- 3 files changed, 11 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 71c4508..14ef48f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/hondana/__init__.py b/hondana/__init__.py index a18cddd..d26662f 100644 --- a/hondana/__init__.py +++ b/hondana/__init__.py @@ -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 @@ -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()) diff --git a/pyproject.toml b/pyproject.toml index e35c292..e50557e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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 "]