aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorlloyd <[email protected]>2009-08-13 08:52:36 +0000
committerlloyd <[email protected]>2009-08-13 08:52:36 +0000
commitce41409eb6ae9a25ac3aeb496e28a4be73c0ae05 (patch)
treef34d217b8c790844a8d6df185da29d3d770fb6a0
parent8d078b50b7905080269ca8252477d37fdaed6db4 (diff)
Update version #s, logfile, readme for 1.8.6 release 2009-08-131.8.6
-rwxr-xr-xconfigure.pl4
-rwxr-xr-xconfigure.py4
-rw-r--r--doc/log.txt9
-rw-r--r--readme.txt2
4 files changed, 12 insertions, 7 deletions
diff --git a/configure.pl b/configure.pl
index d623c16e1..39948f489 100755
--- a/configure.pl
+++ b/configure.pl
@@ -15,9 +15,9 @@ my $MAJOR_VERSION = 1;
my $MINOR_VERSION = 8;
my $PATCH_VERSION = 6;
-my $VERSION_SUFFIX = '-pre';
+my $VERSION_SUFFIX = '';
-my $SO_PATCH_VERSION = 6;
+my $SO_PATCH_VERSION = 2;
my $VERSION_STRING = "$MAJOR_VERSION.$MINOR_VERSION.$PATCH_VERSION$VERSION_SUFFIX";
my $SO_VERSION_STRING = "$MAJOR_VERSION.$MINOR_VERSION.$SO_PATCH_VERSION$VERSION_SUFFIX";
diff --git a/configure.py b/configure.py
index d5cc433b6..75e57f95e 100755
--- a/configure.py
+++ b/configure.py
@@ -38,8 +38,8 @@ class BuildConfigurationInformation(object):
version_major = 1
version_minor = 8
version_patch = 6
- version_so_patch = 6
- version_suffix = '-pre'
+ version_so_patch = 2
+ version_suffix = ''
version_string = '%d.%d.%d%s' % (
version_major, version_minor, version_patch, version_suffix)
diff --git a/doc/log.txt b/doc/log.txt
index 734c8c99c..57baaa3c9 100644
--- a/doc/log.txt
+++ b/doc/log.txt
@@ -1,9 +1,14 @@
-* 1.8.6-pre, 2009-??-??
+* 1.8.6, 2009-08-13
+ - Add Cryptobox, a set of simple password-based encryption routines
- Only read world-readable files when walking /proc for entropy
+ - Fix building with TR1 disabled
+ - Fix x86 bswap support for Visual C++
+ - Fixes for compilation under Sun C++
- Add support for Dragonfly BSD (contributed by Patrick Georgi)
- Add support for the Open64 C++ compiler
- - Minor changes to license to be equivalent to the FreeBSD/NetBSD license
+ - Build fixes for MIPS systems running Linux
+ - Minor changes to license, now equivalent to the FreeBSD/NetBSD license
* 1.8.5, 2009-07-23
- Change configure.py to work on stock Python 2.4
diff --git a/readme.txt b/readme.txt
index 102999cce..dfa258b83 100644
--- a/readme.txt
+++ b/readme.txt
@@ -1,4 +1,4 @@
-Botan 1.8.6-pre 2009-??-??
+Botan 1.8.6 2009-08-13
Botan is a C++ class library for performing a wide variety of
cryptographic operations.