From fac1c699e8907f2e47ce276feb6843679043ad6e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luk=C3=A1=C5=A1=20Lalinsk=C3=BD?= Date: Fri, 9 Mar 2007 22:10:40 +0100 Subject: [PATCH] Bump version number. --- NEWS.txt | 6 +++++- picard/__init__.py | 2 +- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/NEWS.txt b/NEWS.txt index ab28a8777..b5f622694 100644 --- a/NEWS.txt +++ b/NEWS.txt @@ -1,4 +1,8 @@ -Version 0.9.0alpha3 - 2007-03-XX +Version 0.9.0alpha4 - 2007-03-09 + * Bug Fixes: + * Fixed case-insentive file renaming. (#2457, #2513) + +Version 0.9.0alpha3 - 2007-03-08 * New Features: * Using of 'performed by' AR types (without instrument or vocal). * The "Replace non-ASCII characters" option will try to remove diff --git a/picard/__init__.py b/picard/__init__.py index 2c3574651..d7ac35d86 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', 3) +version_info = (0, 9, 0, 'alpha', 4) if version_info[3] == 'final': version_string = '%d.%d.%d' % version_info[:3]