diff options
-rwxr-xr-x | configure.pl | 6 | ||||
-rwxr-xr-x | configure.py | 2 | ||||
-rw-r--r-- | doc/log.txt | 2 | ||||
-rw-r--r-- | readme.txt | 2 |
4 files changed, 7 insertions, 5 deletions
diff --git a/configure.pl b/configure.pl index 06c5d5df7..85b1508b8 100755 --- a/configure.pl +++ b/configure.pl @@ -15,10 +15,12 @@ my $MAJOR_VERSION = 1; my $MINOR_VERSION = 8; my $PATCH_VERSION = 5; +my $VERSION_SUFFIX = '-rc1'; + 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"; +my $VERSION_STRING = "$MAJOR_VERSION.$MINOR_VERSION.$PATCH_VERSION$VERSION_SUFFIX"; +my $SO_VERSION_STRING = "$MAJOR_VERSION.$MINOR_VERSION.$SO_PATCH_VERSION$VERSION_SUFFIX"; ################################################## # Data # diff --git a/configure.py b/configure.py index 106990634..821092151 100755 --- a/configure.py +++ b/configure.py @@ -37,7 +37,7 @@ class BuildConfigurationInformation(object): version_minor = 8 version_patch = 5 version_so_patch = 5 - version_suffix = '-pre' + version_suffix = '-rc1' 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 ab62dea11..831757d63 100644 --- a/doc/log.txt +++ b/doc/log.txt @@ -1,5 +1,5 @@ -* 1.8.5, 2009-??-?? +* 1.8.5-rc1, 2009-07-20 - Change configure.py to work on stock Python 2.4 - Avoid a crash in Skein_512::add_data processing a zero-length input - The test suite now returns an error code from main() if any tests failed diff --git a/readme.txt b/readme.txt index f0e62d2cf..8b9c96531 100644 --- a/readme.txt +++ b/readme.txt @@ -1,4 +1,4 @@ -Botan 1.8.5-pre 2009-??-?? +Botan 1.8.5-rc1 2009-07-20 Botan is a C++ class library for performing a wide variety of cryptographic operations. |