From f5e64f1785a22de77933be5267943842dae599fe Mon Sep 17 00:00:00 2001 From: Christoph Reiter Date: Mon, 13 Oct 2014 20:39:07 +0200 Subject: [PATCH] release prep --- NEWS | 6 ++++++ mutagen/__init__.py | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/NEWS b/NEWS index c5ec2f6d..6cdcdc33 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,9 @@ +1.25.1 - 2014.10.13 +------------------- + +* ID3: Fix parsing of some files with Python 3 :bug:`194` + + 1.25 - 2014.10.03 ----------------- diff --git a/mutagen/__init__.py b/mutagen/__init__.py index 1bef6f86..a34f1cc7 100644 --- a/mutagen/__init__.py +++ b/mutagen/__init__.py @@ -23,7 +23,7 @@ from mutagen._file import FileType, StreamInfo, File from mutagen._tags import Metadata -version = (1, 25, -1) +version = (1, 25, 1) """Version tuple.""" version_string = ".".join(map(str, version))