diff options
-rwxr-xr-x | configure.py | 4 | ||||
-rw-r--r-- | doc/log.txt | 6 | ||||
-rw-r--r-- | readme.txt | 2 |
3 files changed, 8 insertions, 4 deletions
diff --git a/configure.py b/configure.py index 69381ef05..bfc09d4bc 100755 --- a/configure.py +++ b/configure.py @@ -45,9 +45,9 @@ class BuildConfigurationInformation(object): version_minor = 9 version_patch = 13 version_so_patch = 13 - version_suffix = '-dev' + version_suffix = '' - version_datestamp = 0 + version_datestamp = 20110209 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 280495556..ab621cfe1 100644 --- a/doc/log.txt +++ b/doc/log.txt @@ -1,7 +1,11 @@ -* 1.9.13-dev, ????-??-?? +* 1.9.13, 2011-02-19 - Update Keccak to the round 3 variant - Fix ordering in GOST 34.10 signatures to match DNSSEC specifications + - Use size_t instead of u32bit for small integers in DER/BER codecs + - Add new build option --distribution-info + - Fix problems in the amalgamation build + - Fix building under Clang 2.9 and Sun Studio 12 * 1.9.12, 2010-12-13 - Add the Keccak hash function diff --git a/readme.txt b/readme.txt index f39aa9d5f..b681f6c06 100644 --- a/readme.txt +++ b/readme.txt @@ -1,4 +1,4 @@ -Botan 1.9.13-dev, ????-??-?? +Botan 1.9.13, 2011-02-19 http://botan.randombit.net/ Botan is a C++ class library for performing a wide variety of |