From 92d42142ba70fdcd1020ba42f6e674dcdaa41fd1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alex=20N=C3=B8rgaard?= Date: Thu, 3 Oct 2024 11:24:00 +0100 Subject: [PATCH] version bump and changelog --- CHANGELOG.md | 15 ++++++++++++--- README.md | 3 +-- hondana/__init__.py | 4 ++-- pyproject.toml | 2 +- 4 files changed, 16 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5a57bf3..3c3a6c9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -3.5.1 +3.6.0 API Version 5.10.2 @@ -10,9 +10,18 @@ Hondana release, see below for finer details. ## Changes ## Fixes -- `http.Token.refresh()` failing to refresh tokens due to passing the access token, not the refresh token to the request. (624b84bde4adfe17541b60f4163c5bef5e5ace16) -- Documentation building. (775599552b05395cafd5ba854afed7efd73da439 and 763b36cac39047ca1855ddc850af4da6c7f72724) +- README having incorrect html rendering an underline where it wasn't needed. (e0a1bf0bed28ee5d3ae54bad0fa6b6519c45c2c7) +- Handling of failures in gaining a refresh token, therefor resulting in a re-authentication cycle. (9e8948d9e56f98bb9bd8c8fca663476b5de0c0e9) +- Fix incorrect typing and allowed usage of `QueryTags`. (4aebb64207f8fd0f81cf6acc2bc6c0f641bb433b) + - Improvements on `QueryTags` internal resolution. (552e980429117dc137cfbaf0e2906bcd1dc8a37a and f54421dccd8f46fc03636e2771512fb51de25b17) + - Added regression test for above. (bd38de7cc0ddd2828a16d9d57567d12165f5151b) +- Correct aiohttp CookieJar usage. (c799aa32aacd830c635e65a33a4ed70e8adb8b9f) +- Correct overeager sending of authorization headers to all MangaDex related endpoints. (1269b057657388e00ae90273512e3864d64f1850) + +- Misc fixes around metadata and tooling updates. (a767411036c275f54ec93823c41792ec4ffc68ef, 52ab3961d7aa67e05bb3df45d65cf951a57e5129) ### Notes ### Noted Contributors + +@EvieePy for the README fix. diff --git a/README.md b/README.md index 5c8dadd..2a1f6b6 100644 --- a/README.md +++ b/README.md @@ -6,10 +6,9 @@ Build status Linting and Typechecking + Documentation Status
- API Status - Documentation Status Discord Server

diff --git a/hondana/__init__.py b/hondana/__init__.py index 73129ed..45d319b 100644 --- a/hondana/__init__.py +++ b/hondana/__init__.py @@ -26,7 +26,7 @@ __author__ = "AbstractUmbra" __license__ = "MIT" __copyright__ = "Copyright 2021-present AbstractUmbra" -__version__ = "3.5.1" +__version__ = "3.6.0" import logging from typing import Literal, NamedTuple @@ -60,7 +60,7 @@ class VersionInfo(NamedTuple): serial: int -version_info: VersionInfo = VersionInfo(major=3, minor=5, micro=1, releaselevel="final", serial=0) +version_info: VersionInfo = VersionInfo(major=3, minor=6, micro=0, releaselevel="final", serial=0) logging.getLogger(__name__).addHandler(logging.NullHandler()) diff --git a/pyproject.toml b/pyproject.toml index 0e258db..3f35858 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "Hondana" -version = "3.5.1" +version = "3.6.0" description = "An asynchronous wrapper around the MangaDex v5 API" authors = ["Alex Nørgaard "]