diff --git a/CHANGELOG.md b/CHANGELOG.md index 0e3a898..f35aa31 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -3.4.5 +3.4.6 API Version 5.7.5 @@ -6,14 +6,16 @@ API Version 5.7.5 Fix Release. ## Added -- Python 3.11 CI builds. (c6676fc5e83166aef87ff68931a2d4ce1549ebef) -- + ## Changes +- Rename `Client.permissions` to `Client.user_info`. (6c5fbacf296ed510090714362bc9bb0710c00b5d) ## Fixes -- Fix handling enums in query builder changes. (1972e34839a35a421daf34e06c75677190172e2b) +- Fix import paths potentially shadowing builtin paths, namely `token` and `types`. (6c5fbacf296ed510090714362bc9bb0710c00b5d) ### Notes -- Can confirm that `hondana` works in Python 3.11 provided you can build the required dependencies. +The above fix should have been a breaking change, but as it was not to the "user facing" part of the codebase, mainly the +types submodule and renaming of `token.Permissions` to `user.UserInfo`. +I expect this will be a breaking change in a very minute number of usercode, and can only offer an apology for this. ### Noted Contributors diff --git a/hondana/__init__.py b/hondana/__init__.py index 2c9ae62..1856598 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.5" +__version__ = "3.4.6" import logging from typing import Literal, NamedTuple diff --git a/pyproject.toml b/pyproject.toml index 4fedfb2..cfa3d88 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "Hondana" -version = "3.4.5" +version = "3.4.6" description = "An asynchronous wrapper around the MangaDex v5 API" authors = ["Alex Nørgaard "]