diff options
-rw-r--r-- | botan_version.py | 2 | ||||
-rw-r--r-- | doc/log.txt | 9 | ||||
-rw-r--r-- | readme.txt | 4 |
3 files changed, 10 insertions, 5 deletions
diff --git a/botan_version.py b/botan_version.py index 17c4bad28..9a25ce255 100644 --- a/botan_version.py +++ b/botan_version.py @@ -1,7 +1,7 @@ release_major = 1 release_minor = 10 -release_patch = 14 +release_patch = 15 release_so_abi_rev = 1 diff --git a/doc/log.txt b/doc/log.txt index c4b0fc258..9ceaa7d3d 100644 --- a/doc/log.txt +++ b/doc/log.txt @@ -7,13 +7,14 @@ Release Notes Series 1.10 ---------------------------------------- -Version 1.10.15, Not Yet Released +Version 1.10.15, 2017-01-12 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ -* Fix a bug causing incorrect modular exponentiation computations when - the modulus was even and the exponent was large. (GH #754) +* Fix a bug causing modular exponentiations done modulo even numbers + to almost always be incorrect, unless the values were small. This + bug is not known to affect any cryptographic operation in Botan. (GH #754) -* Fix C++98 build by avoiding std::to_string (GH #747) +* Avoid use of C++11 std::to_string in some code added in 1.10.14 (GH #747 #834) Version 1.10.14, 2016-11-28 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ diff --git a/readme.txt b/readme.txt index 42ee7a5b1..bf41b91e6 100644 --- a/readme.txt +++ b/readme.txt @@ -1,4 +1,8 @@ +This branch (1.10) of Botan is only supported for security fixes until +the end of 2017. Please upgrade to 2.0 API as soon as possible. + + Botan is a C++ library for performing a wide variety of cryptographic operations. It is released under the 2 clause BSD license; see doc/license.rst for the specifics. You can file bugs on GitHub |