Skip to content

Commit 2902ba8

Browse files
committed
set version to 0.5.0
Last CHANGES additions and readme/index fixes.
1 parent 8957876 commit 2902ba8

File tree

4 files changed

+11
-6
lines changed

4 files changed

+11
-6
lines changed

CHANGES.rst

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,17 @@
11
Changelog
22
=========
33

4-
Changes in 0.5.0 (2013-04-??):
4+
Changes in 0.5.0 (2013-04-27):
55
------------------------------
66

77
* feature: :issue:`10` add :attr:`Disc.mcn` and :attr:`Track.isrc`
88
* feature: add :data:`LIBDISCID_VERSION_STRING`
9+
* feature: :issue:`28` add :attr:`Disc.seconds`, :attr:`Track.seconds`
10+
and aliases :attr:`Disc.length` and :attr:`Track.sectors`
911
* :issue:`22` move :func:`read` and :func:`put` to module level
1012
* :issue:`25` provide a package `discid` rather than a module
13+
* :issue:`29` changed parameters for :func:`put` to include extra `sectors`
14+
and add :exc:`TOCError`
1115
* rename :class:`DiscId` to :class:`Disc`
1216
* fix: :issue:`27` move track attributes to :class:`Track`
1317
* fix: :issue:`24` only have "real" tracks in the list(s) (0 not special)

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ module works with Python 2 >= 2.6, or Python 3 >= 3.1.
99
Libdiscid >= 0.2.2 is needed.
1010

1111
Libdiscid's main purpose is the calculation of an identifier of audio
12-
discs (disc ID) to use for the MusicBrainz database.
12+
discs (disc ID) to use for the `MusicBrainz database <http://musicbrainz.org>`_.
1313

1414
That identifier is calculated from the TOC of the disc, similar to the
1515
freeDB CDDB identifier. Libdiscid can calculate MusicBrainz disc IDs and

discid/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
import discid.libdiscid
3434
import discid.disc
3535

36-
__version__ = "0.4.0-dev"
36+
__version__ = "0.5.0"
3737

3838

3939
# these contants are defined here so sphinx can catch the "docstrings"

doc/index.rst

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,10 @@ python-discid |current|
77
**python-discid** is a Python binding
88
of :musicbrainz:`libdiscid` by MusicBrainz.
99

10-
The main purpose is the calculation of and identifier for audio discs
11-
(disc ID) to use for the MusicBrainz_ database.
12-
Additionally the disc MCN and track ISRCs can be extracted.
10+
The main purpose is the calculation of an identifier for audio discs
11+
(:musicbrainz:`Disc ID`) to use for the MusicBrainz_ database.
12+
Additionally the disc MCN and track :musicbrainz:`ISRCs <ISRC>`
13+
can be extracted.
1314

1415
This module is released under the
1516
`GNU Lesser General Public License Version 3

0 commit comments

Comments
 (0)