diff options
author | lloyd <[email protected]> | 2009-09-10 00:45:01 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2009-09-10 00:45:01 +0000 |
commit | 72a7434e65061d61ec6d4bd2b78a0ca5406e41ad (patch) | |
tree | 82d88116b0f048d6aea238351dc147f4cc02503b | |
parent | 74c8b2300a6a63b5bca2332e8ff42565cd1601dc (diff) |
Update for 1.9.0 release 2009-09-091.9.0
-rwxr-xr-x | configure.py | 2 | ||||
-rw-r--r-- | doc/log.txt | 5 | ||||
-rw-r--r-- | readme.txt | 2 |
3 files changed, 6 insertions, 3 deletions
diff --git a/configure.py b/configure.py index 97fd44816..34242c4d7 100755 --- a/configure.py +++ b/configure.py @@ -39,7 +39,7 @@ class BuildConfigurationInformation(object): version_minor = 9 version_patch = 0 version_so_patch = 0 - version_suffix = '-pre' + 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 e96056779..e6d3cdb05 100644 --- a/doc/log.txt +++ b/doc/log.txt @@ -1,9 +1,12 @@ -* 1.9.0-pre, 2009-??-?? +* 1.9.0, 2009-09-09 - Add support for parallel invocation of block ciphers where possible - Add SSE2 implementation of Serpent - Add Rivest's package transform (an all or nothing transform) - Minor speedups to the Turing key schedule + - Fix processing multiple messages in XTS mode + - Add --no-autoload option to configure.py, for minimized builds + - The previously used configure.pl script is no longer supported * 1.8.7, 2009-09-09 - Fix processing multiple messages in XTS mode diff --git a/readme.txt b/readme.txt index 1444c9573..5936600f4 100644 --- a/readme.txt +++ b/readme.txt @@ -1,4 +1,4 @@ -Botan 1.9.0-pre 2009-09-09 +Botan 1.9.0 2009-09-09 Botan is a C++ class library for performing a wide variety of cryptographic operations. |