From 4d2c3cb50f8601f991674e1fb0004fa90b985d6a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luk=C3=A1=C5=A1=20Lalinsk=C3=BD?= Date: Sat, 12 May 2007 11:20:36 +0200 Subject: [PATCH] Version number. --- NEWS.txt | 5 ++++- picard/__init__.py | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/NEWS.txt b/NEWS.txt index 22c1edf1a..7a7fb33ea 100644 --- a/NEWS.txt +++ b/NEWS.txt @@ -1,4 +1,4 @@ -Version 0.9.0beta1 - 2007-XX-YY +Version 0.9.0alpha9 - 2007-05-12 * New Features: * The tag editor now accepts free-text tag names. * Load 'DJ-mixed by' AR data to %djmixer% tag. @@ -7,6 +7,9 @@ Version 0.9.0beta1 - 2007-XX-YY * Sort files in clusters by disc number, track number and file name. (#2547) * Support for any text frame in special variable %_id3:%. * Ignore empty ID3 text values. + * Windows installer: + * Removed DirectX-based decoder. + * FFmpeg compiled with AAC (faad2) support. * Bug Fixes: * Save XSOP frame to ID3v2.3 tags. (#2484) * Use attributes like 'guest' or 'additional' also from generic performer ARs. diff --git a/picard/__init__.py b/picard/__init__.py index cb12cc2c1..6fa8b41c7 100644 --- a/picard/__init__.py +++ b/picard/__init__.py @@ -17,7 +17,7 @@ # along with this program; if not, write to the Free Software # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -version_info = (0, 9, 0, 'alpha', 8) +version_info = (0, 9, 0, 'alpha', 9) if version_info[3] == 'final': version_string = '%d.%d.%d' % version_info[:3]