From 250b0da900c095a09bedc1a0717381010c01a3c6 Mon Sep 17 00:00:00 2001 From: snejus Date: Wed, 7 May 2025 22:34:25 +0000 Subject: [PATCH] Increment version to 2.3.0 --- beets/__init__.py | 2 +- docs/changelog.rst | 11 +++++++++++ docs/conf.py | 4 ++-- pyproject.toml | 2 +- 4 files changed, 15 insertions(+), 4 deletions(-) diff --git a/beets/__init__.py b/beets/__init__.py index 845d251ae..1bac81b65 100644 --- a/beets/__init__.py +++ b/beets/__init__.py @@ -17,7 +17,7 @@ from sys import stderr import confuse -__version__ = "2.2.0" +__version__ = "2.3.0" __author__ = "Adrian Sampson " diff --git a/docs/changelog.rst b/docs/changelog.rst index 1ab7229e7..9dd129712 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -6,6 +6,17 @@ Changelog goes here! Please add your entry to the bottom of one of the lists bel Unreleased ---------- +New features: + +Bug fixes: + +For packagers: + +Other changes: + +2.3.0 (May 07, 2025) +-------------------- + Beets now requires Python 3.9 or later since support for EOL Python 3.8 has been dropped. diff --git a/docs/conf.py b/docs/conf.py index 337a76a54..fafabef70 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -11,8 +11,8 @@ master_doc = "index" project = "beets" copyright = "2016, Adrian Sampson" -version = "2.2" -release = "2.2.0" +version = "2.3" +release = "2.3.0" pygments_style = "sphinx" diff --git a/pyproject.toml b/pyproject.toml index ab2c42267..f83c174b4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "beets" -version = "2.2.0" +version = "2.3.0" description = "music tagger and library organizer" authors = ["Adrian Sampson "] maintainers = ["Serene-Arc"]