diff options
author | 2011-03-13 17:32:06 +0000 | |
---|---|---|
committer | 2011-03-13 17:32:06 +0000 | |
commit | 978a2a4bbe25b12f4e6e7baa8632ca7c586b5452 (patch) | |
tree | 2232ee20cb708824ab777ab541beb920d3db5f71 | |
parent | 9791a436809f26ed04c4dd5b77fdd0c77c4fd5ee (diff) | |
download | paludis-978a2a4bbe25b12f4e6e7baa8632ca7c586b5452.tar.gz paludis-978a2a4bbe25b12f4e6e7baa8632ca7c586b5452.tar.xz |
Preparation for 0.60.0_pre10.60.0_pre1
-rw-r--r-- | NEWS | 13 | ||||
-rw-r--r-- | configure.ac | 4 |
2 files changed, 15 insertions, 2 deletions
@@ -4,6 +4,19 @@ News for Paludis This file lists the major changes between versions. For a more detailed list of every change, see the Git log. +0.60.0_pre1: + * The deprecated 'adjutrix', 'inquisitio', 'importare', 'paludis' and + 'reconcilio' clients have been removed. + + * 'build_options: split strip' are removed in favour of 'build_options: + symbols=preserve|split|strip|compress'. + + * We now generate man pages via 'asciidoc'. + + * The 'cave resolve -D' short option is now '-B' instead. + + * A new special 'nothing' set has been added. + 0.58.5: * 'cave search' no longer fails when encountering invalid metadata. diff --git a/configure.ac b/configure.ac index 1ab1b0f82..850a82687 100644 --- a/configure.ac +++ b/configure.ac @@ -7,9 +7,9 @@ AC_CONFIG_SRCDIR([paludis/paludis.hh]) AC_CONFIG_AUX_DIR(config) VERSION_MAJOR=0 -VERSION_MINOR=59 +VERSION_MINOR=60 VERSION_MICRO=0 -VERSION_SUFFIX= +VERSION_SUFFIX=_pre1 VERSION_FULL="$VERSION_MAJOR.$VERSION_MINOR.$VERSION_MICRO$VERSION_SUFFIX" VERSION="$VERSION_FULL" VERSION_LIB_CURRENT=`expr 100 '*' $VERSION_MAJOR + $VERSION_MINOR` |