diff --git a/beets/__init__.py b/beets/__init__.py index 974c62b80..e0fa5a025 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.0b15' +__version__ = '1.0b16' __author__ = 'Adrian Sampson ' import beets.library diff --git a/beetsplug/fetchart.py b/beetsplug/fetchart.py index 8282a3771..68906c1c4 100644 --- a/beetsplug/fetchart.py +++ b/beetsplug/fetchart.py @@ -54,7 +54,7 @@ def _fetch_image(url): # Cover Art Archive. -CAA_URL = 'http://coverartarchive.org/release/{mbid}/front-500' +CAA_URL = 'http://coverartarchive.org/release/{mbid}/front-500.jpg' def caa_art(release_id): """Fetch album art from the Cover Art Archive given a MusicBrainz diff --git a/docs/changelog.rst b/docs/changelog.rst index fa00bc337..6f181149d 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -1,6 +1,12 @@ Changelog ========= +1.0b16 (in development) +----------------------- + +* :doc:`/plugins/fetchart`: Fix a bug where cover art filenames could lack + a ``.jpg`` extension. + 1.0b15 (July 26, 2012) ---------------------- diff --git a/docs/conf.py b/docs/conf.py index e72c5c8dc..95cd09e47 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -10,10 +10,10 @@ source_suffix = '.rst' master_doc = 'index' project = u'beets' -copyright = u'2011, Adrian Sampson' +copyright = u'2012, Adrian Sampson' -version = '1.0b15' -release = '1.0b15' +version = '1.0b16' +release = '1.0b16' pygments_style = 'sphinx' diff --git a/setup.py b/setup.py index df48b94aa..41e74e4f0 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.0b15', + version='1.0b16', description='music tagger and library organizer', author='Adrian Sampson', author_email='adrian@radbox.org',