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.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 + when a std::ifstream is created for a directory until the first read + occurs. So we write our own stream buffer classes that do error checking + and throw useful exceptions on error, and use those instead. + 0.34.2: * Wildcards are now allowed for --contents and --executables. diff --git a/configure.ac b/configure.ac index 962100146..dc3a2248a 100644 --- a/configure.ac +++ b/configure.ac @@ -7,7 +7,7 @@ AC_CONFIG_AUX_DIR(config) VERSION_MAJOR=0 VERSION_MINOR=34 -VERSION_MICRO=2 +VERSION_MICRO=3 VERSION_SUFFIX= VERSION_FULL="$VERSION_MAJOR.$VERSION_MINOR.$VERSION_MICRO$VERSION_SUFFIX" VERSION="$VERSION_FULL" |