Skip to content

Commit 61ce957

Browse files
committed
version bump and changelog
1 parent 6a27853 commit 61ce957

File tree

3 files changed

+14
-11
lines changed

3 files changed

+14
-11
lines changed

CHANGELOG.md

Lines changed: 11 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,24 @@
1-
3.4.6
1+
3.4.7
22

3-
API Version 5.7.5
3+
API Version 5.9.0
44

55
# Hondana Changelog
6-
Fix Release.
6+
API Release - more below!
77

88
## Added
9+
- Forum/Thread/Comment api capability
10+
- Added various objects and methods, namely `hondana.ForumThread`, `hondana.MangaComments` (also `Chapter` and `ScanlatorGroup`), `Client.create_forum_thread` and `get_statistics` on `Chapter` and `ScanlatorGroup` objects. (2ab4ab4f529fd17e2083a804f9b58e000832447e and e45fb24082d0df599f8be12ee8f55ed44fef08aa primarily)
911

1012
## Changes
11-
- Rename `Client.permissions` to `Client.user_info`. (6c5fbacf296ed510090714362bc9bb0710c00b5d)
13+
- Remove `Client.find_manga_statistics` in favour of combining it with `Client.get_manga_statistics` and using two optional params for singular and plural. (e45fb24082d0df599f8be12ee8f55ed44fef08aa)
14+
- Update library dependencies. (a1e8c92f545173b8abe6666b863bfcd8e0a782f9)
1215

1316
## Fixes
14-
- Fix import paths potentially shadowing builtin paths, namely `token` and `types`. (6c5fbacf296ed510090714362bc9bb0710c00b5d)
17+
- GH Actions now have the `--pythonversion` flag for pyright workflows as per their matrix. Probably optional but wanted to cover it. (7850d34546f37b917ff94cbfd173e079a4182925)
1518

1619
### Notes
17-
The above fix should have been a breaking change, but as it was not to the "user facing" part of the codebase, mainly the
18-
types submodule and renaming of `token.Permissions` to `user.UserInfo`.
19-
I expect this will be a breaking change in a very minute number of usercode, and can only offer an apology for this.
20+
Added a warning and also a section on the README about the upcoming basic authentication deprecation on MangaDex's side.
21+
The gist of which is that user/email and pass authentication will no longer be supported at an approaching but unspecified future date.
22+
I am actively enquiring about getting the Client Credentials oauth2 flow enabled. See the library README for more info.
2023

2124
### Noted Contributors

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.4.6"
29+
__version__ = "3.4.7"
3030

3131
import logging
3232
from typing import Literal, NamedTuple
@@ -63,7 +63,7 @@ class VersionInfo(NamedTuple):
6363
serial: int
6464

6565

66-
version_info: VersionInfo = VersionInfo(major=3, minor=4, micro=5, releaselevel="final", serial=0)
66+
version_info: VersionInfo = VersionInfo(major=3, minor=4, micro=7, releaselevel="final", serial=0)
6767

6868
logging.getLogger(__name__).addHandler(logging.NullHandler())
6969

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.4.6"
3+
version = "3.4.7"
44
description = "An asynchronous wrapper around the MangaDex v5 API"
55
authors = ["Alex Nørgaard <[email protected]>"]
66

0 commit comments

Comments
 (0)