From f33606c87aa0d5af3e6c680d40c6b10dddef8f18 Mon Sep 17 00:00:00 2001 From: Adrian Sampson Date: Sat, 27 Nov 2021 11:17:14 -0500 Subject: [PATCH] Switch version to 1.6.0 Especially with the Python version changes, it seems like this justifies more than a 0.0.1 bump. --- beets/__init__.py | 2 +- docs/changelog.rst | 2 +- docs/conf.py | 4 ++-- setup.py | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/beets/__init__.py b/beets/__init__.py index 285417773..9642a6f3c 100644 --- a/beets/__init__.py +++ b/beets/__init__.py @@ -16,7 +16,7 @@ import confuse from sys import stderr -__version__ = '1.5.1' +__version__ = '1.6.0' __author__ = 'Adrian Sampson ' diff --git a/docs/changelog.rst b/docs/changelog.rst index c48c3e3a5..56d21838d 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -1,7 +1,7 @@ Changelog ========= -1.5.1 (in development) +1.6.0 (in development) ---------------------- This release now requires Python 3.6 or later (it removes support for Python diff --git a/docs/conf.py b/docs/conf.py index 09ee22080..f8fac35aa 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -11,8 +11,8 @@ master_doc = 'index' project = 'beets' copyright = '2016, Adrian Sampson' -version = '1.5' -release = '1.5.1' +version = '1.6' +release = '1.6.0' pygments_style = 'sphinx' diff --git a/setup.py b/setup.py index 02306d6ec..264bb2e7a 100755 --- a/setup.py +++ b/setup.py @@ -54,7 +54,7 @@ if 'sdist' in sys.argv: setup( name='beets', - version='1.5.1', + version='1.6.0', description='music tagger and library organizer', author='Adrian Sampson', author_email='adrian@radbox.org',