diff options
-rw-r--r-- | NEWS | 7 | ||||
-rw-r--r-- | configure.ac | 2 |
2 files changed, 8 insertions, 1 deletions
@@ -4,6 +4,13 @@ News for Paludis This file lists the major changes between versions. For a more detailed list of every change, see the ChangeLog. +0.34.4: + * VDB entries lacking CONFIG_PROTECT keys (such as those created by Portage) + would cause an error in 0.34.3. This is now fixed. + + * Tests for 0.34.3 would fail as root because reads and writes to a-rw files + would still succeed. Affected tests are now skipped when root. + 0.34.3: * Unfortunately std::ifstream and std::ofstream are allowed to fail in unobvious ways when given a duff file. In particular, gcc won't error out diff --git a/configure.ac b/configure.ac index dc3a2248a..20943bbb7 100644 --- a/configure.ac +++ b/configure.ac @@ -7,7 +7,7 @@ AC_CONFIG_AUX_DIR(config) VERSION_MAJOR=0 VERSION_MINOR=34 -VERSION_MICRO=3 +VERSION_MICRO=4 VERSION_SUFFIX= VERSION_FULL="$VERSION_MAJOR.$VERSION_MINOR.$VERSION_MICRO$VERSION_SUFFIX" VERSION="$VERSION_FULL" |