diff options
author | 2010-08-23 13:22:48 +0100 | |
---|---|---|
committer | 2010-08-24 15:47:56 +0100 | |
commit | b09dadd7a3c3e30535501bf6e4903119942a9d4c (patch) | |
tree | 0a0b31d6105082c423ae4153982225eaec97466f | |
parent | 49750cc61904ba17060521bd345c6ae526fb1bf8 (diff) | |
download | paludis-0.54.0.tar.gz paludis-0.54.0.tar.xz |
Preparation for 0.54.00.54.0
-rw-r--r-- | NEWS | 48 | ||||
-rw-r--r-- | configure.ac | 2 |
2 files changed, 49 insertions, 1 deletions
@@ -4,6 +4,54 @@ News for Paludis This file lists the major changes between versions. For a more detailed list of every change, see the Git log. +0.54.0: + * 'cave resolve --remove-if-dependent' will now cause dependent packages to + be removed from world, if no versions remain. + + * 'cave resolve --make' now defaults to 'chroot' when the environment's + preferred root is not '/'. + + * 'cave display-resolution --show-option-descriptions' now works as + documented. + + * 'cave fix-linkage' may take multiple '--library' arguments. + + * New 'cave' subcommands: 'report', 'print-id-environment-variable'. + + * 'cave print-' commands are now consistent in handling '--all' / '-a' and + '--best' / '-b'. + + * 'cave show' will now always show keys specified by '-k', even if those + keys are internal-only or complex. + + * 'cave search' now takes an optional SQLite index, which can be created + using 'cave manage-search-index'. + + * 'cave search' now has a '--visible' option. + + * The 'importare', 'inquisitio' and 'reconcilio' clients are now deprecated + in favour of 'cave import, 'cave search' and 'cave fix-linkage' + respectively. + + * Output managers and output.conf are now documented features, and a new + 'command' output manager handler was added. + + * Hooks are now run using an output manager, where appropriate. The API for + .so hooks has been changed to allow this. + + * The demo hooks have been removed, since none are particularly useful with + 'cave'. + + * 'cave' now has a global '--colour' option, and coloured output is disabled + by default when outputting to a non-tty. + + * The output format for certain cave commands can now be tinkered with by + the user. Use 'cave dump-cave-formats-conf' to create ~/.cave/formats.conf + and then edit as desired. + + * The way sub-programs are executed has changed to be somewhat less + convoluted. + 0.52.3: * A bug causing screwiness with soft-blocking EAPI 3 packages where both packages installed the same file with an mtime in the distant past has diff --git a/configure.ac b/configure.ac index 21f2bc316..7958807e6 100644 --- a/configure.ac +++ b/configure.ac @@ -6,7 +6,7 @@ AC_INIT([paludis/paludis.hh]) AC_CONFIG_AUX_DIR(config) VERSION_MAJOR=0 -VERSION_MINOR=53 +VERSION_MINOR=54 VERSION_MICRO=0 VERSION_SUFFIX= VERSION_FULL="$VERSION_MAJOR.$VERSION_MINOR.$VERSION_MICRO$VERSION_SUFFIX" |