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 Oct 3, 2024
1 parent 0caf683 commit 92d4214
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 8 deletions.
15 changes: 12 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
3.5.1
3.6.0

API Version 5.10.2

Expand All @@ -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.
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,9 @@
</h1>
<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>
<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>
<a href='https://hondana.readthedocs.io/en/latest/?badge=latest'><img src='https://readthedocs.org/projects/hondana/badge/?version=latest' alt='Documentation Status' /></a>
</div>
<div align="center">
<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>
<a href='https://hondana.readthedocs.io/en/latest/?badge=latest'><img src='https://readthedocs.org/projects/hondana/badge/?version=latest' alt='Documentation Status' /></a>
<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>
</div>
<h1></h1>
Expand Down
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.5.1"
__version__ = "3.6.0"

import logging
from typing import Literal, NamedTuple
Expand Down Expand Up @@ -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())

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.5.1"
version = "3.6.0"
description = "An asynchronous wrapper around the MangaDex v5 API"
authors = ["Alex Nørgaard <[email protected]>"]

Expand Down

0 comments on commit 92d4214

Please sign in to comment.