mirror of
https://github.com/beetbox/beets.git
synced 2025-12-20 23:53:15 +01:00
version bump and changelog summary for 1.1b1
This commit is contained in:
parent
38dee5af0f
commit
8c9ca36907
4 changed files with 18 additions and 8 deletions
|
|
@ -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.1b1-dev'
|
||||
__version__ = '1.1.0-beta.1'
|
||||
__author__ = 'Adrian Sampson <adrian@radbox.org>'
|
||||
|
||||
import beets.library
|
||||
|
|
|
|||
|
|
@ -1,10 +1,15 @@
|
|||
Changelog
|
||||
=========
|
||||
|
||||
1.1b1 (in development)
|
||||
----------------------
|
||||
1.1b1 (January 29, 2013)
|
||||
------------------------
|
||||
|
||||
This release entirely revamps beets' configuration system.
|
||||
This release entirely revamps beets' configuration system. The configuration
|
||||
file is now a `YAML`_ document and is located, along with other support files,
|
||||
in a common directory (e.g., ``~/.config/beets`` on Unix-like systems). If
|
||||
you're upgrading from an earlier version, please see :doc:`/guides/migration`.
|
||||
|
||||
.. _YAML: http://en.wikipedia.org/wiki/YAML
|
||||
|
||||
* Renamed plugins: The ``rdm`` plugin has been renamed to ``random`` and
|
||||
``fuzzy_search`` has been renamed to ``fuzzy``.
|
||||
|
|
@ -31,8 +36,13 @@ It also adds some new features:
|
|||
* :doc:`/plugins/importfeeds`: Added a new configuration option that controls
|
||||
the base for relative paths used in m3u files. Thanks to Philippe Mongeau.
|
||||
|
||||
1.0.0 (in development)
|
||||
----------------------
|
||||
1.0.0 (January 29, 2013)
|
||||
------------------------
|
||||
|
||||
After fifteen betas and two release candidates, beets has finally hit
|
||||
one-point-oh. Congratulations to everybody involved. This version of beets will
|
||||
remain stable and receive only bug fixes from here on out. New development is
|
||||
ongoing in the betas of version 1.1.
|
||||
|
||||
* :doc:`/plugins/scrub`: Fix an incompatibility with Python 2.6.
|
||||
* :doc:`/plugins/lyrics`: Fix an issue that failed to find lyrics when metadata
|
||||
|
|
|
|||
|
|
@ -13,7 +13,7 @@ project = u'beets'
|
|||
copyright = u'2012, Adrian Sampson'
|
||||
|
||||
version = '1.1'
|
||||
release = '1.1b1-dev'
|
||||
release = '1.1b1'
|
||||
|
||||
pygments_style = 'sphinx'
|
||||
|
||||
|
|
|
|||
2
setup.py
2
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.1b1',
|
||||
version='1.1.0-beta.1',
|
||||
description='music tagger and library organizer',
|
||||
author='Adrian Sampson',
|
||||
author_email='adrian@radbox.org',
|
||||
|
|
|
|||
Loading…
Reference in a new issue