diff options
-rwxr-xr-x | configure.pl | 6 | ||||
-rwxr-xr-x | configure.py | 6 | ||||
-rw-r--r-- | doc/log.txt | 2 | ||||
-rw-r--r-- | readme.txt | 2 |
4 files changed, 9 insertions, 7 deletions
diff --git a/configure.pl b/configure.pl index 39948f489..592eb2bff 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 = 6; +my $PATCH_VERSION = 7; -my $VERSION_SUFFIX = ''; +my $VERSION_SUFFIX = '-pre'; -my $SO_PATCH_VERSION = 2; +my $SO_PATCH_VERSION = 7; 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 75e57f95e..d1bd46cb5 100755 --- a/configure.py +++ b/configure.py @@ -37,9 +37,9 @@ class BuildConfigurationInformation(object): """ version_major = 1 version_minor = 8 - version_patch = 6 - version_so_patch = 2 - version_suffix = '' + version_patch = 7 + version_so_patch = 7 + 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 57baaa3c9..faba96814 100644 --- a/doc/log.txt +++ b/doc/log.txt @@ -1,4 +1,6 @@ +* 1.8.7-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 diff --git a/readme.txt b/readme.txt index dfa258b83..5fc3ed517 100644 --- a/readme.txt +++ b/readme.txt @@ -1,4 +1,4 @@ -Botan 1.8.6 2009-08-13 +Botan 1.8.7-pre 2009-??-?? Botan is a C++ class library for performing a wide variety of cryptographic operations. |