From bb1507bd1ca5b0953d89599217e1ba9c131a5727 Mon Sep 17 00:00:00 2001 From: Adrian Sampson Date: Sun, 17 Mar 2013 22:52:33 -0700 Subject: [PATCH] version bump/changelog for #182 --- beets/__init__.py | 2 +- docs/changelog.rst | 7 +++++++ docs/conf.py | 2 +- setup.py | 2 +- 4 files changed, 10 insertions(+), 3 deletions(-) diff --git a/beets/__init__.py b/beets/__init__.py index dcd1a8f34..957bac223 100644 --- a/beets/__init__.py +++ b/beets/__init__.py @@ -12,7 +12,7 @@ # The above copyright notice and this permission notice shall be # included in all copies or substantial portions of the Software. -__version__ = '1.1.0-beta.3' +__version__ = '1.1.0' __author__ = 'Adrian Sampson ' import beets.library diff --git a/docs/changelog.rst b/docs/changelog.rst index b75c3728e..9e270c21a 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -1,6 +1,13 @@ Changelog ========= +1.1.0 (in development) +---------------------- + +* :doc:`/plugins/embedart`: The ``embedart`` command now embeds each album's + associated art by default. The ``--file`` option invokes the old behavior, + in which a specific image file is used. + 1.1b3 (March 16, 2013) ---------------------- diff --git a/docs/conf.py b/docs/conf.py index ccd96e730..51e9f2056 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -13,7 +13,7 @@ project = u'beets' copyright = u'2012, Adrian Sampson' version = '1.1' -release = '1.1b3' +release = '1.1.0' pygments_style = 'sphinx' diff --git a/setup.py b/setup.py index 295759b94..09d95968a 100755 --- a/setup.py +++ b/setup.py @@ -42,7 +42,7 @@ if 'sdist' in sys.argv: shutil.copytree(os.path.join(docdir, '_build', 'man'), mandir) setup(name='beets', - version='1.1.0-beta.3', + version='1.1.0', description='music tagger and library organizer', author='Adrian Sampson', author_email='adrian@radbox.org',