diff options
-rw-r--r-- | NEWS | 9 | ||||
-rw-r--r-- | configure.ac | 2 |
2 files changed, 10 insertions, 1 deletions
@@ -4,6 +4,15 @@ News for Paludis This file lists the major changes between versions. For a more detailed list of every change, see the Git log. +1.2.0: + * Bug fixes. + + * Dep specs can now use '[.key!=value]'. The behaviour of '<' and '>' has + changed: for key types where order comparisons don't make sense, the match + now always fails. + + * Various compiler-compatibility fixes. + 1.0.0: * EAPI 5 style subslot specs are allowed in user dependency specs. diff --git a/configure.ac b/configure.ac index c74572ae8..cc5eeb459 100644 --- a/configure.ac +++ b/configure.ac @@ -7,7 +7,7 @@ AC_CONFIG_SRCDIR([paludis/paludis.hh]) AC_CONFIG_AUX_DIR(config) VERSION_MAJOR=1 -VERSION_MINOR=1 +VERSION_MINOR=2 VERSION_MICRO=0 VERSION_SUFFIX= VERSION_FULL="$VERSION_MAJOR.$VERSION_MINOR.$VERSION_MICRO$VERSION_SUFFIX" |