From e3f4e19298cb9296dc636b7a15ab77d98087b635 Mon Sep 17 00:00:00 2001 From: Adrian Sampson Date: Sat, 27 Nov 2021 11:38:48 -0500 Subject: [PATCH] Version bump: v1.6.1 --- docs/changelog.rst | 6 ++++++ docs/conf.py | 2 +- extra/release.py | 2 +- setup.py | 2 +- 4 files changed, 9 insertions(+), 3 deletions(-) diff --git a/docs/changelog.rst b/docs/changelog.rst index 37f5756fa..06fbe3c53 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -1,6 +1,12 @@ Changelog ========= +1.6.1 (in development) +---------------------- + +Changelog goes here! + + 1.6.0 (November 27, 2021) ------------------------- diff --git a/docs/conf.py b/docs/conf.py index f8fac35aa..f8ed63f9d 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -12,7 +12,7 @@ project = 'beets' copyright = '2016, Adrian Sampson' version = '1.6' -release = '1.6.0' +release = '1.6.1' pygments_style = 'sphinx' diff --git a/extra/release.py b/extra/release.py index 2a98e06e8..7904cd414 100755 --- a/extra/release.py +++ b/extra/release.py @@ -276,7 +276,7 @@ def prep(): cur_version = get_version() # Tag. - subprocess.check_output(['git', 'tag', f'v{cur_version}']) + subprocess.check_call(['git', 'tag', f'v{cur_version}']) # Build. with chdir(BASE): diff --git a/setup.py b/setup.py index 264bb2e7a..aefa0b18f 100755 --- a/setup.py +++ b/setup.py @@ -54,7 +54,7 @@ if 'sdist' in sys.argv: setup( name='beets', - version='1.6.0', + version='1.6.1', description='music tagger and library organizer', author='Adrian Sampson', author_email='adrian@radbox.org',