diff options
author | 2012-04-15 14:51:25 +0100 | |
---|---|---|
committer | 2012-04-15 14:51:25 +0100 | |
commit | 89805d40997c68c4cfb82b5cbd7f75df68d1dcb0 (patch) | |
tree | 2ea217cb1231ef6e0258eb4306e3c7eb2ee156fd | |
parent | 1eda5a0333e14e44d341a19f9fe506f67a0ebf07 (diff) | |
download | paludis-89805d40997c68c4cfb82b5cbd7f75df68d1dcb0.tar.gz paludis-89805d40997c68c4cfb82b5cbd7f75df68d1dcb0.tar.xz |
Preparation for 0.74.00.74.0
-rw-r--r-- | NEWS | 27 | ||||
-rw-r--r-- | configure.ac | 2 |
2 files changed, 28 insertions, 1 deletions
@@ -4,6 +4,33 @@ News for Paludis This file lists the major changes between versions. For a more detailed list of every change, see the Git log. +0.74.0: + * The way || dependencies are handled has changed to allow upgrades in + certain situations that would previously be blocked. + + * Previously file descriptors would be leaked when adding certain types of + files to a tar being created for a pbin. This is now fixed. + + * We now strip certain kinds of trailing garbage from tar files, to deal + with upstreams who insist upon distributing corrupted tarballs. + + * We now define ${T} to something usable in pkg_pretend. + + * The order of arguments passed to econf has been tweaked, to make it easier + to override defaults. + + * cave print-ids etc now have a '%u' format, for a uniquely identifying + spec. + + * Added cave print-checksum, for convenience. + + * We now use metadata/md5-cache if it exists. + + * We now ignore self-blockers for Gentoo EAPIs, to avoid problems with + developers screwing up package moves. + + * Compilation with GCC 4.7 should now work. + 0.72.2: * Added and changed options are now displayed in 'resolve' output, even if they are hidden. diff --git a/configure.ac b/configure.ac index c50d36f34..edda327f2 100644 --- a/configure.ac +++ b/configure.ac @@ -7,7 +7,7 @@ AC_CONFIG_SRCDIR([paludis/paludis.hh]) AC_CONFIG_AUX_DIR(config) VERSION_MAJOR=0 -VERSION_MINOR=73 +VERSION_MINOR=74 VERSION_MICRO=0 VERSION_SUFFIX= VERSION_FULL="$VERSION_MAJOR.$VERSION_MINOR.$VERSION_MICRO$VERSION_SUFFIX" |