aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorlloyd <[email protected]>2009-07-25 12:54:46 +0000
committerlloyd <[email protected]>2009-07-25 12:54:46 +0000
commit23df3a0101e828b510337d0baa5124b751e6256e (patch)
treeaae9127fdc26d70ed0459e5bcd9c7feb99babc0c
parent336404ac312cdc7cea82f9a2568d36c62418123f (diff)
Change version to 1.8.6-pre, document changes since 1.8.5 release
-rwxr-xr-xconfigure.pl6
-rwxr-xr-xconfigure.py6
-rw-r--r--doc/log.txt5
-rw-r--r--readme.txt2
4 files changed, 12 insertions, 7 deletions
diff --git a/configure.pl b/configure.pl
index 8834dc169..1d100fb6a 100755
--- a/configure.pl
+++ b/configure.pl
@@ -13,11 +13,11 @@ use Sys::Hostname;
my $MAJOR_VERSION = 1;
my $MINOR_VERSION = 8;
-my $PATCH_VERSION = 5;
+my $PATCH_VERSION = 6;
-my $VERSION_SUFFIX = '';
+my $VERSION_SUFFIX = '-pre';
-my $SO_PATCH_VERSION = 2;
+my $SO_PATCH_VERSION = 6;
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 ac0d2e978..a1cacb6c8 100755
--- a/configure.py
+++ b/configure.py
@@ -35,9 +35,9 @@ class BuildConfigurationInformation(object):
"""
version_major = 1
version_minor = 8
- version_patch = 5
- version_so_patch = 2
- version_suffix = ''
+ version_patch = 6
+ version_so_patch = 6
+ version_suffix = '-pre'
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 c69211ad3..2b6662744 100644
--- a/doc/log.txt
+++ b/doc/log.txt
@@ -1,4 +1,9 @@
+* 1.8.6-pre, 2009-??-??
+ - Add support for Dragonfly BSD (contributed by Patrick Georgi)
+ - Only read world-readable files when walking /proc for entropy
+ - Minor changes to license to be equivalent to the FreeBSD/NetBSD license
+
* 1.8.5, 2009-07-23
- Change configure.py to work on stock Python 2.4
- Avoid a crash in Skein_512::add_data processing a zero-length input
diff --git a/readme.txt b/readme.txt
index 7a680b6ea..102999cce 100644
--- a/readme.txt
+++ b/readme.txt
@@ -1,4 +1,4 @@
-Botan 1.8.5 2009-07-23
+Botan 1.8.6-pre 2009-??-??
Botan is a C++ class library for performing a wide variety of
cryptographic operations.