diff --git a/CHANGELOG.md b/CHANGELOG.md index 68c16c3..d37ebd2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,12 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). ## Unreleased +## [0.10.0] - 2024-09-26 + +### Bugfix + +- Fix `autodetect_locale` function + ### Misc - Drop support for Python 3.8 and 3.9 diff --git a/pyproject.toml b/pyproject.toml index 0526259..ed8d5ed 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "audible" -version = "0.9.1" +version = "0.10.0" description = "A(Sync) Interface for internal Audible API written in pure Python." authors = ["mkb79 "] license = "AGPL-3.0-only" diff --git a/src/audible/__init__.py b/src/audible/__init__.py index 6168f4d..2b87680 100644 --- a/src/audible/__init__.py +++ b/src/audible/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.9.1" +__version__ = "0.10.0" from ._logging import log_helper from .auth import Authenticator