From 4cf6cd3189b04fd03da04252ef67da2ad8960d08 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fatih=20A=C5=9F=C4=B1c=C4=B1?= Date: Wed, 27 Jul 2011 11:05:24 +0000 Subject: [PATCH] pisi 2.4_rc1 This is the first release candidate for the upcoming 2.4.x releases. This release fixes a regression introduced in beta2 and fixes a cosmetic issue in the output of index command. I think Pisi is quite ready for a stable release. Therefore, this may be the last release before 2.4. Changes since 2.4_beta2 ----------------------- fatih (4): MANIFEST: Add pisi.xml.in to the tarball Revert "build: Remove redundant dict variable" build: Add a comment for the dict variable index: Print CR character at the end --- ChangeLog | 32 ++++++++++++++++++++++++++++++++ pisi/__init__.py | 2 +- 2 files changed, 33 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 815bbe31..eadf8c7e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,35 @@ +2011-07-27 Fatih Aşıcı + * index: Print CR character at the end + + Otherwise, error messages are not displayed correctly. Still needs some + tweaks for error/warning strings. + +2011-07-27 Fatih Aşıcı + * build: Add a comment for the dict variable + + Also move the creation of Files object down and use itervalues() instead + of iteritems(). + +2011-07-27 Fatih Aşıcı + * Revert "build: Remove redundant dict variable" + + This variable prevents writing duplicate entries to files.xml. + +2011-07-22 Fatih Aşıcı + * MANIFEST: Add pisi.xml.in to the tarball + +2011-07-22 Fatih Aşıcı + * pisi 2.4_beta2 + + This is the second beta for the upcoming 2.4.x releases. This release + includes enhancements, important bug fixes, and translation updates. + + Notable changes (see ChangeLog file for details): + - Support for 7-zip source archives + - Refactored check command + - Revised cli messages + - Switch from pygettext to xgettext + 2011-07-14 Fatih Aşıcı * archive: Handle possible conflicts if upper directories cannot be created diff --git a/pisi/__init__.py b/pisi/__init__.py index 9fb02dd0..17650cd6 100644 --- a/pisi/__init__.py +++ b/pisi/__init__.py @@ -18,7 +18,7 @@ import atexit import logging import logging.handlers -__version__ = "2.4_beta2" +__version__ = "2.4_rc1" __all__ = [ 'api', 'configfile', 'db']