diff options
-rw-r--r-- | NEWS | 21 | ||||
-rw-r--r-- | configure.ac | 2 |
2 files changed, 22 insertions, 1 deletions
@@ -4,6 +4,27 @@ News for Paludis This file lists the major changes between versions. For a more detailed list of every change, see the Git log. +0.52.2: + * 'cave perform' now calls '_fail' hooks. + + * 'cave print-id-contents' now has '--type' + + * 'cave print-packages' now has '--repository' and '--category' + + * Output buffering of commands has changed to better handle progress bars of + the kind displayed by 'wget' and 'git'. To avoid excessive hopping, 'cave + execute-resolution' will now only switch between buffered outputs every + few seconds, rather than 0.1s if new output is available. + + * 'cave display-resolution' now shows flag changes in a more obvious manner. + + * 'cave purge' and purge checking for 'cave resolve' are now significantly + faster. + + * 'cave resolve --less-restrictive-remove-blockers' is now much more likely + to be able to fix breakages by reinstalls. A horrible error that was most + easily triggered by use of this option is now fixed. + 0.52.1: * glibc 2.12 changes the OS ABI used by its libraries. 'cave fix-linkage' and 'reconcilio' have been updated to ignore OS ABI mismatches to avoid diff --git a/configure.ac b/configure.ac index bc0ae8965..8809a32d0 100644 --- a/configure.ac +++ b/configure.ac @@ -7,7 +7,7 @@ AC_CONFIG_AUX_DIR(config) VERSION_MAJOR=0 VERSION_MINOR=52 -VERSION_MICRO=1 +VERSION_MICRO=2 VERSION_SUFFIX= VERSION_FULL="$VERSION_MAJOR.$VERSION_MINOR.$VERSION_MICRO$VERSION_SUFFIX" VERSION="$VERSION_FULL" |