diff options
author | lloyd <[email protected]> | 2009-07-14 12:23:48 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2009-07-14 12:23:48 +0000 |
commit | 686c6cb75fa94978ba5939af0ae71f33d6a41e65 (patch) | |
tree | 05efa02fc84f3d071acccc6efa8456e41ac5df94 | |
parent | 3fc0c32c3740d38a3b2ff301200552a7cf39e76a (diff) |
Bump version numbers to 1.8.5-pre
-rwxr-xr-x | configure.pl | 4 | ||||
-rwxr-xr-x | configure.py | 4 | ||||
-rw-r--r-- | doc/log.txt | 3 | ||||
-rw-r--r-- | readme.txt | 2 |
4 files changed, 8 insertions, 5 deletions
diff --git a/configure.pl b/configure.pl index 039875f88..0cdd402d7 100755 --- a/configure.pl +++ b/configure.pl @@ -13,9 +13,9 @@ use Sys::Hostname; my $MAJOR_VERSION = 1; my $MINOR_VERSION = 8; -my $PATCH_VERSION = 4; +my $PATCH_VERSION = 5; -my $SO_PATCH_VERSION = 2; +my $SO_PATCH_VERSION = 5; my $VERSION_STRING = "$MAJOR_VERSION.$MINOR_VERSION.$PATCH_VERSION"; my $SO_VERSION_STRING = "$MAJOR_VERSION.$MINOR_VERSION.$SO_PATCH_VERSION"; diff --git a/configure.py b/configure.py index 6d89fdf18..640cd65b7 100755 --- a/configure.py +++ b/configure.py @@ -32,9 +32,9 @@ from optparse import (OptionParser, OptionGroup, class BuildConfigurationInformation(object): def version_major(self): return 1 def version_minor(self): return 8 - def version_patch(self): return 4 + def version_patch(self): return 5 - def version_so_patch(self): return 2 + def version_so_patch(self): return 5 def __init__(self, options, modules): self.build_dir = os.path.join(options.with_build_dir, 'build') diff --git a/doc/log.txt b/doc/log.txt index ffa392d2f..11e65fcf8 100644 --- a/doc/log.txt +++ b/doc/log.txt @@ -1,4 +1,7 @@ +* 1.8.5, 2009-??-?? + - Change configure.py to work on stock Python 2.4 + * 1.8.4, 2009-07-12 - Fix a bug in nonce generation in the Miller-Rabin test diff --git a/readme.txt b/readme.txt index 4cc7fc47a..f0e62d2cf 100644 --- a/readme.txt +++ b/readme.txt @@ -1,4 +1,4 @@ -Botan 1.8.4 2009-07-12 +Botan 1.8.5-pre 2009-??-?? Botan is a C++ class library for performing a wide variety of cryptographic operations. |