Skip to content

Commit 92d4214

Browse files
committed
version bump and changelog
1 parent 0caf683 commit 92d4214

File tree

4 files changed

+16
-8
lines changed

4 files changed

+16
-8
lines changed

CHANGELOG.md

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
3.5.1
1+
3.6.0
22

33
API Version 5.10.2
44

@@ -10,9 +10,18 @@ Hondana release, see below for finer details.
1010
## Changes
1111

1212
## Fixes
13-
- `http.Token.refresh()` failing to refresh tokens due to passing the access token, not the refresh token to the request. (624b84bde4adfe17541b60f4163c5bef5e5ace16)
14-
- Documentation building. (775599552b05395cafd5ba854afed7efd73da439 and 763b36cac39047ca1855ddc850af4da6c7f72724)
13+
- README having incorrect html rendering an underline where it wasn't needed. (e0a1bf0bed28ee5d3ae54bad0fa6b6519c45c2c7)
14+
- Handling of failures in gaining a refresh token, therefor resulting in a re-authentication cycle. (9e8948d9e56f98bb9bd8c8fca663476b5de0c0e9)
15+
- Fix incorrect typing and allowed usage of `QueryTags`. (4aebb64207f8fd0f81cf6acc2bc6c0f641bb433b)
16+
- Improvements on `QueryTags` internal resolution. (552e980429117dc137cfbaf0e2906bcd1dc8a37a and f54421dccd8f46fc03636e2771512fb51de25b17)
17+
- Added regression test for above. (bd38de7cc0ddd2828a16d9d57567d12165f5151b)
18+
- Correct aiohttp CookieJar usage. (c799aa32aacd830c635e65a33a4ed70e8adb8b9f)
19+
- Correct overeager sending of authorization headers to all MangaDex related endpoints. (1269b057657388e00ae90273512e3864d64f1850)
20+
21+
- Misc fixes around metadata and tooling updates. (a767411036c275f54ec93823c41792ec4ffc68ef, 52ab3961d7aa67e05bb3df45d65cf951a57e5129)
1522

1623
### Notes
1724

1825
### Noted Contributors
26+
27+
@EvieePy for the README fix.

README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,9 @@
66
</h1>
77
<a href='https://github.com/AbstractUmbra/Hondana/actions/workflows/build.yaml'><img src='https://github.com/AbstractUmbra/Hondana/actions/workflows/build.yaml/badge.svg' alt='Build status' /></a>
88
<a href='https://github.com/AbstractUmbra/Hondana/actions/workflows/coverage_and_lint.yaml'><img src='https://github.com/AbstractUmbra/Hondana/actions/workflows/coverage_and_lint.yaml/badge.svg' alt='Linting and Typechecking' /></a>
9+
<a href='https://hondana.readthedocs.io/en/latest/?badge=latest'><img src='https://readthedocs.org/projects/hondana/badge/?version=latest' alt='Documentation Status' /></a>
910
</div>
1011
<div align="center">
11-
<a href='https://api.mangadex.org/'><img src='https://img.shields.io/website?down_color=red&down_message=offline&label=API%20Status&logo=MangaDex%20API&up_color=lime&up_message=online&url=https%3A%2F%2Fapi.mangadex.org%2Fping' alt='API Status'/></a>
12-
<a href='https://hondana.readthedocs.io/en/latest/?badge=latest'><img src='https://readthedocs.org/projects/hondana/badge/?version=latest' alt='Documentation Status' /></a>
1312
<a href="https://discord.gg/aYGYJxwqe5"><img src='https://img.shields.io/discord/705500489248145459?color=blue&label=Discord&logo=Discord%20Server&logoColor=green' alt='Discord Server'></a>
1413
</div>
1514
<h1></h1>

hondana/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
__author__ = "AbstractUmbra"
2727
__license__ = "MIT"
2828
__copyright__ = "Copyright 2021-present AbstractUmbra"
29-
__version__ = "3.5.1"
29+
__version__ = "3.6.0"
3030

3131
import logging
3232
from typing import Literal, NamedTuple
@@ -60,7 +60,7 @@ class VersionInfo(NamedTuple):
6060
serial: int
6161

6262

63-
version_info: VersionInfo = VersionInfo(major=3, minor=5, micro=1, releaselevel="final", serial=0)
63+
version_info: VersionInfo = VersionInfo(major=3, minor=6, micro=0, releaselevel="final", serial=0)
6464

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

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "Hondana"
3-
version = "3.5.1"
3+
version = "3.6.0"
44
description = "An asynchronous wrapper around the MangaDex v5 API"
55
authors = ["Alex Nørgaard <umbra@abstractumbra.dev>"]
66

0 commit comments

Comments
 (0)