From eb963a1ea370ca822b1b28a86982d3ddab7eacb7 Mon Sep 17 00:00:00 2001 From: Christoph Reiter Date: Sun, 8 Sep 2013 20:13:07 +0200 Subject: [PATCH] Mutagen 1.22 --- NEWS | 18 +++++++++++++++--- mutagen/__init__.py | 2 +- 2 files changed, 16 insertions(+), 4 deletions(-) diff --git a/NEWS b/NEWS index a966f328..a9a4fa4f 100644 --- a/NEWS +++ b/NEWS @@ -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). diff --git a/mutagen/__init__.py b/mutagen/__init__.py index 21c5812e..28febab3 100644 --- a/mutagen/__init__.py +++ b/mutagen/__init__.py @@ -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))