From 156870419ea9bfdb1c7d3aa2843cead801eb91f9 Mon Sep 17 00:00:00 2001 From: snejus Date: Sat, 7 Mar 2026 21:16:10 +0000 Subject: [PATCH] Increment version to 2.7.0 --- beets/__init__.py | 2 +- docs/changelog.rst | 19 +++++++++++++++++++ docs/conf.py | 4 ++-- pyproject.toml | 2 +- 4 files changed, 23 insertions(+), 4 deletions(-) diff --git a/beets/__init__.py b/beets/__init__.py index cfa5be2c4..189c8e229 100644 --- a/beets/__init__.py +++ b/beets/__init__.py @@ -19,7 +19,7 @@ import confuse from .util.deprecation import deprecate_imports -__version__ = "2.6.2" +__version__ = "2.7.0" __author__ = "Adrian Sampson " diff --git a/docs/changelog.rst b/docs/changelog.rst index 1f79f6487..bcdc9f3b8 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -9,6 +9,25 @@ below! Unreleased ---------- +.. + New features + ~~~~~~~~~~~~ + +.. + Bug fixes + ~~~~~~~~~ + +.. + For plugin developers + ~~~~~~~~~~~~~~~~~~~~~ + +.. + Other changes + ~~~~~~~~~~~~~ + +2.7.0 (March 07, 2026) +---------------------- + New features ~~~~~~~~~~~~ diff --git a/docs/conf.py b/docs/conf.py index 84fa9bbca..7f560ee56 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -18,8 +18,8 @@ copyright = "2016, Adrian Sampson" master_doc = "index" language = "en" -version = "2.6" -release = "2.6.2" +version = "2.7" +release = "2.7.0" # -- General configuration --------------------------------------------------- # https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration diff --git a/pyproject.toml b/pyproject.toml index 0ce774d9a..147fbaf90 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "beets" -version = "2.6.2" +version = "2.7.0" description = "music tagger and library organizer" authors = ["Adrian Sampson "] maintainers = ["Serene-Arc"]