From 293c60a6226d60bd6b0fb27b1989aaad1dc0c08e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alex=20N=C3=B8rgaard?= Date: Sat, 29 Oct 2022 22:10:05 +0100 Subject: [PATCH] version bump and changelog --- CHANGELOG.md | 11 ++++------- hondana/__init__.py | 4 ++-- pyproject.toml | 2 +- 3 files changed, 7 insertions(+), 10 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4e5c6ef..71c4508 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,20 +1,17 @@ -3.4.2 +3.4.3 -API Version 5.7.3 +API Version 5.7.4b # Hondana Changelog API Release! ## Added -- User report collection endpoint now supports reference expansion. (5ebe280724ff304428910b908619318e53d6c489) -- User report collection now supports filtering by report ID and report type ID. (fa9a34a6f356589bf5d47c3546a0c6323ba1f48b) +- Tag filtering on `Client.get_random_manga()` has been added. (56de42140db46fbba3be5403b3321bede87b4795) ## Changes -- Added dependabot meta project details to keep dependencies in check. (dd4e8025ec8cf13cfb0a7eb48a5391f9566d28e8) ## Fixes -- Fix new MultiDict internal usage causing only the final key to take effect. (770a9fb4869c79247cfa3643f27f74b9404a66c9) -- MangaDex backend sending empty arrays instead of objects where supposed. (8416ba2c71e33f9e46ab0f825f78b18733035ad9) +- Tests are now fixed due to corrected payload data on the MD side. ### Notes diff --git a/hondana/__init__.py b/hondana/__init__.py index adc75b7..a18cddd 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.2" +__version__ = "3.4.3" 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=2, releaselevel="final", serial=0) +version_info: VersionInfo = VersionInfo(major=3, minor=4, micro=3, releaselevel="final", serial=0) logging.getLogger(__name__).addHandler(logging.NullHandler()) diff --git a/pyproject.toml b/pyproject.toml index 4556858..e35c292 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "Hondana" -version = "3.4.2" +version = "3.4.3" description = "An asynchronous wrapper around the MangaDex v5 API" authors = ["Alex Nørgaard "]