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']