diff options
author | lloyd <[email protected]> | 2009-08-13 18:32:49 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2009-08-13 18:32:49 +0000 |
commit | 1c08f8e0258d1b0317fb837e78b4cef9359af9c9 (patch) | |
tree | c10b30514abb18577805a6437df517017594ac16 | |
parent | 5a1329ff7d80349598e50a1ec63abb5334ddc2ac (diff) |
Move version #s to 1.9.0-pre
-rwxr-xr-x | configure.pl | 8 | ||||
-rwxr-xr-x | configure.py | 8 | ||||
-rw-r--r-- | doc/log.txt | 4 | ||||
-rw-r--r-- | readme.txt | 2 |
4 files changed, 13 insertions, 9 deletions
diff --git a/configure.pl b/configure.pl index 39948f489..4859ede74 100755 --- a/configure.pl +++ b/configure.pl @@ -12,12 +12,12 @@ use File::Find; use Sys::Hostname; my $MAJOR_VERSION = 1; -my $MINOR_VERSION = 8; -my $PATCH_VERSION = 6; +my $MINOR_VERSION = 9; +my $PATCH_VERSION = 0; -my $VERSION_SUFFIX = ''; +my $VERSION_SUFFIX = '-pre'; -my $SO_PATCH_VERSION = 2; +my $SO_PATCH_VERSION = 0; 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..286e61979 100755 --- a/configure.py +++ b/configure.py @@ -36,10 +36,10 @@ class BuildConfigurationInformation(object): Version information """ version_major = 1 - version_minor = 8 - version_patch = 6 - version_so_patch = 2 - version_suffix = '' + version_minor = 9 + version_patch = 0 + version_so_patch = 0 + 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..992829b39 100644 --- a/doc/log.txt +++ b/doc/log.txt @@ -1,4 +1,8 @@ +* 1.9.0-pre, 2009-??-?? + - Add support for parallel invocation of block ciphers where possible + - Add SSE2 implementation of Serpent + * 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..4936116f0 100644 --- a/readme.txt +++ b/readme.txt @@ -1,4 +1,4 @@ -Botan 1.8.6 2009-08-13 +Botan 1.9.0-pre 2009-??-?? Botan is a C++ class library for performing a wide variety of cryptographic operations. |