diff options
-rw-r--r-- | NEWS | 10 | ||||
-rw-r--r-- | configure.ac | 2 |
2 files changed, 11 insertions, 1 deletions
@@ -4,6 +4,16 @@ News for Paludis This file lists the major changes between versions. For a more detailed list of every change, see the Git log. +0.50.2: + * 'cave resolve --continue-on-failure' interacted weirdly with background + fetching. This is now fixed. + + * Support for automatic repository configuration creation via installing + a 'repository/somerepo' pseudo-package is now available on Gentoo. + + * Queries in the form '*/*::foo->' no longer force pointless generation of + metadata for ebuilds. + 0.50.1: * 'cave purge' and 'cave resolve' will no longer either give misleading output or produce a horrible error when a package providing an old style diff --git a/configure.ac b/configure.ac index 80c24db03..497e24128 100644 --- a/configure.ac +++ b/configure.ac @@ -7,7 +7,7 @@ AC_CONFIG_AUX_DIR(config) VERSION_MAJOR=0 VERSION_MINOR=50 -VERSION_MICRO=1 +VERSION_MICRO=2 VERSION_SUFFIX= VERSION_FULL="$VERSION_MAJOR.$VERSION_MINOR.$VERSION_MICRO$VERSION_SUFFIX" VERSION="$VERSION_FULL" |