aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorlloyd <[email protected]>2009-07-23 18:02:58 +0000
committerlloyd <[email protected]>2009-07-23 18:02:58 +0000
commitefa7cabca1fe897d10f3c4addeb7739fa81e47a2 (patch)
treed881c0572df7bb6275fc4369ef41f4c26f3a8516
parent4eb35babd0bab4b358948a9e6f29e099e7ce9c4f (diff)
Update log, readme, version #s in configure for 1.8.5 release 2009-07-231.8.5
-rwxr-xr-xconfigure.pl4
-rwxr-xr-xconfigure.py4
-rw-r--r--doc/log.txt3
-rw-r--r--readme.txt2
4 files changed, 7 insertions, 6 deletions
diff --git a/configure.pl b/configure.pl
index 16a0e15c6..8834dc169 100755
--- a/configure.pl
+++ b/configure.pl
@@ -15,9 +15,9 @@ my $MAJOR_VERSION = 1;
my $MINOR_VERSION = 8;
my $PATCH_VERSION = 5;
-my $VERSION_SUFFIX = '-rc1';
+my $VERSION_SUFFIX = '';
-my $SO_PATCH_VERSION = 5;
+my $SO_PATCH_VERSION = 2;
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 548771b5f..ac0d2e978 100755
--- a/configure.py
+++ b/configure.py
@@ -36,8 +36,8 @@ class BuildConfigurationInformation(object):
version_major = 1
version_minor = 8
version_patch = 5
- version_so_patch = 5
- version_suffix = '-rc1'
+ version_so_patch = 2
+ version_suffix = ''
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 831757d63..c69211ad3 100644
--- a/doc/log.txt
+++ b/doc/log.txt
@@ -1,7 +1,8 @@
-* 1.8.5-rc1, 2009-07-20
+* 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
+ - Small build fixes for SPARC, ARM, and HP-PA processors
- The test suite now returns an error code from main() if any tests failed
* 1.8.4, 2009-07-12
diff --git a/readme.txt b/readme.txt
index 8b9c96531..7a680b6ea 100644
--- a/readme.txt
+++ b/readme.txt
@@ -1,4 +1,4 @@
-Botan 1.8.5-rc1 2009-07-20
+Botan 1.8.5 2009-07-23
Botan is a C++ class library for performing a wide variety of
cryptographic operations.