From 96a3641e9d81e9b58fd5a29e76e2d1f0a9a7d46a Mon Sep 17 00:00:00 2001 From: mkb79 Date: Thu, 26 Sep 2024 17:34:14 +0200 Subject: [PATCH] build: bump version to v0.10.0 (#522) --- CHANGELOG.md | 6 ++++++ pyproject.toml | 2 +- src/audible/__init__.py | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 68c16c39..d37ebd26 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 0526259a..ed8d5ed9 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 6168f4dd..2b876806 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