diff --git a/NEWS b/NEWS index 6afef5c27..5edffc259 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,7 @@ +1.0b10 +------ +* Fix a missing __future__ import in embedart on Python 2.5. + 1.0b9 ----- * Queries can now contain whitespace. Spaces passed as shell diff --git a/beets/__init__.py b/beets/__init__.py index c32dac812..917dbfa6c 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.0b9' +__version__ = '1.0b10' __author__ = 'Adrian Sampson ' import beets.library diff --git a/beetsplug/embedart.py b/beetsplug/embedart.py index 6f4c8c250..d90e5afb6 100755 --- a/beetsplug/embedart.py +++ b/beetsplug/embedart.py @@ -1,3 +1,20 @@ +# This file is part of beets. +# Copyright 2011, Adrian Sampson. +# +# Permission is hereby granted, free of charge, to any person obtaining +# a copy of this software and associated documentation files (the +# "Software"), to deal in the Software without restriction, including +# without limitation the rights to use, copy, modify, merge, publish, +# distribute, sublicense, and/or sell copies of the Software, and to +# permit persons to whom the Software is furnished to do so, subject to +# the following conditions: +# +# The above copyright notice and this permission notice shall be +# included in all copies or substantial portions of the Software. + +"""Allows beets to embed album art into file metadata.""" +from __future__ import with_statement + import logging import imghdr diff --git a/setup.py b/setup.py index a8bc9d206..45d5b00da 100755 --- a/setup.py +++ b/setup.py @@ -22,7 +22,7 @@ def _read(fn): return open(path).read() setup(name='beets', - version='1.0b9', + version='1.0b10', description='music tagger and library organizer', author='Adrian Sampson', author_email='adrian@radbox.org',