diff options
author | 2009-02-09 22:25:24 +0000 | |
---|---|---|
committer | 2009-02-09 22:25:24 +0000 | |
commit | b8a281399f347c8d74ec197bcc12dee353c983a6 (patch) | |
tree | 0b9cfcc83ca0d8b663b9b1a2dbe6caf0015ce192 | |
parent | 081d9650061a668818f82915f4c6a2a7f7637c20 (diff) | |
download | paludis-0.34.3.tar.gz paludis-0.34.3.tar.xz |
Preparation for 0.34.30.34.3
-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" |