From e837598e796dd4dcf3a388fec90fe06d58e453b2 Mon Sep 17 00:00:00 2001 From: JOJ0 Date: Sat, 13 Sep 2025 16:47:21 +0000 Subject: [PATCH] Increment version to 2.4.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 c5b93230f..10b0f58b0 100644 --- a/beets/__init__.py +++ b/beets/__init__.py @@ -17,7 +17,7 @@ from sys import stderr import confuse -__version__ = "2.3.1" +__version__ = "2.4.0" __author__ = "Adrian Sampson " diff --git a/docs/changelog.rst b/docs/changelog.rst index 71fd657b7..9a514f9f0 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -9,6 +9,17 @@ Unreleased New features: +Bug fixes: + +For packagers: + +Other changes: + +2.4.0 (September 13, 2025) +-------------------------- + +New features: + - :doc:`plugins/musicbrainz`: The MusicBrainz autotagger has been moved to a separate plugin. The default :ref:`plugins-config` includes ``musicbrainz``, but if you've customized your ``plugins`` list in your configuration, you'll diff --git a/docs/conf.py b/docs/conf.py index 838d82800..7465bdb27 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -13,8 +13,8 @@ copyright = "2016, Adrian Sampson" master_doc = "index" language = "en" -version = "2.3" -release = "2.3.1" +version = "2.4" +release = "2.4.0" # -- General configuration --------------------------------------------------- # https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration diff --git a/pyproject.toml b/pyproject.toml index 63a22f3f1..2546360ad 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "beets" -version = "2.3.1" +version = "2.4.0" description = "music tagger and library organizer" authors = ["Adrian Sampson "] maintainers = ["Serene-Arc"]