Skip to content

Commit

Permalink
Mutagen 1.22
Browse files Browse the repository at this point in the history
  • Loading branch information
lazka committed Sep 8, 2013
1 parent f9bfeda commit eb963a1
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 4 deletions.
18 changes: 15 additions & 3 deletions NEWS
Original file line number Diff line number Diff line change
@@ -1,15 +1,27 @@
1.22
* Minimum supported Python version is now 2.6
* Online documentation at https://mutagen.readthedocs.org/
1.22 - 2013.09.08
* Minimum required Python version is now 2.6
* Online API reference at https://mutagen.readthedocs.org/
* EasyID3:
* Fix crash with empty TXXX values. (#135)
* ID3:
* id3v2.3 writing support (#85)
* Add iTunes podcast frames (TGID, TDES, WFED) (#141)
* Updated id3v1 genre list
* MP4:
* add_tags() will not replace existing tags. (#101)
* Don't ignore tags if parsing unknown atoms fails.
* Raise on invalid 64bit atom size (#132, Sidnei da Silva)
* APEv2:
* Handle invalid tag item count. (#145, Dawid Zamirski)
* Ogg:
* Faster parsing of files with large packets.
* VComment:
* Preserve text case for field names added through the dict interface (#152)
* mid3v2:
* New -e,--escape switch to enable interpretation of escape sequences and
makes escaping of the colon separator possible. (#159)
* mid3iconv:
* Convert COMM frames (#128)

1.21 - 2013.01.30
* Fix Python 2.3 compatibility (broken in 1.19).
Expand Down
2 changes: 1 addition & 1 deletion mutagen/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
for certain keys, again depending on format.
"""

version = (1, 21, -1)
version = (1, 22)
"""Version tuple."""

version_string = ".".join(map(str, version))
Expand Down

0 comments on commit eb963a1

Please sign in to comment.