From f92c0ec8b14fbd59e58374fd123563123aef197b Mon Sep 17 00:00:00 2001 From: snejus Date: Mon, 2 Dec 2024 06:56:49 +0000 Subject: [PATCH] Increment version to 2.2.0 --- beets/__init__.py | 2 +- docs/changelog.rst | 8 ++++++++ docs/conf.py | 4 ++-- pyproject.toml | 2 +- 4 files changed, 12 insertions(+), 4 deletions(-) diff --git a/beets/__init__.py b/beets/__init__.py index 9cd5d4f9b..845d251ae 100644 --- a/beets/__init__.py +++ b/beets/__init__.py @@ -17,7 +17,7 @@ from sys import stderr import confuse -__version__ = "2.1.0" +__version__ = "2.2.0" __author__ = "Adrian Sampson " diff --git a/docs/changelog.rst b/docs/changelog.rst index c95fefb81..0246a1576 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -6,6 +6,14 @@ 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.2.0 (December 02, 2024) +------------------------- + New features: * :doc:`/plugins/substitute`: Allow the replacement string to use capture groups diff --git a/docs/conf.py b/docs/conf.py index e50254468..904aacdc0 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -11,8 +11,8 @@ master_doc = "index" project = "beets" copyright = "2016, Adrian Sampson" -version = "2.1" -release = "2.1.0" +version = "2.2" +release = "2.2.0" pygments_style = "sphinx" diff --git a/pyproject.toml b/pyproject.toml index a12313516..cd4b8f881 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "beets" -version = "2.1.0" +version = "2.2.0" description = "music tagger and library organizer" authors = ["Adrian Sampson "] maintainers = ["Serene-Arc"]