aboutsummaryrefslogtreecommitdiffstats
path: root/doc/relnotes/1_11_7.rst
diff options
context:
space:
mode:
authorlloyd <[email protected]>2014-01-10 00:08:13 +0000
committerlloyd <[email protected]>2014-01-10 00:08:13 +0000
commit57789bdfc55061002b2727d0b32587612829a37c (patch)
tree99f36631b4ec50c5187a1b0a7c256b99182373ad /doc/relnotes/1_11_7.rst
parent94968c917407a63d888fd3eb4d02491f60de6ebc (diff)
Split up test vectors into per-algo files and app into botan-test for
the tests and botan for everything else.
Diffstat (limited to 'doc/relnotes/1_11_7.rst')
-rw-r--r--doc/relnotes/1_11_7.rst28
1 files changed, 19 insertions, 9 deletions
diff --git a/doc/relnotes/1_11_7.rst b/doc/relnotes/1_11_7.rst
index ffe10b3d6..0474aa98b 100644
--- a/doc/relnotes/1_11_7.rst
+++ b/doc/relnotes/1_11_7.rst
@@ -1,17 +1,27 @@
Version 1.11.7, Not Yet Released
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
-* The test program is now named `botan` and is also used as a driver
- to call into various subcommands which can also act as examples of
- library useful, much in the manner of the `openssl` command. It
- understands commands such as `version`, `asn1`, `x509`, `bcrypt`,
- `keygen`, `speed`, `test`, and various others. As part of this
- change many obsolete, duplicated, or one-off test examples were
- removed, while others were extended with new functionality.
- Contributions of new subcommands or new functions in exising ones
- are welcome.
+* Botan's basic numeric types are now defined in terms of the
+ C99/C++11 standard integer types. For instance `u32bit` is now a
+ typedef for `uint32_t`, and both names are included in the
+ namespace.
+
+* There are now two executable outputs of the build, `botan-test`,
+ which runs some or all of the tests, and `botan` which is used as a
+ driver to call into various subcommands which can also act as
+ examples of library use, much in the manner of the `openssl`
+ command. It understands the commands `base64`, `asn1`, `x509`,
+ `tls_client`, `tls_server`, `bcrypt`, `keygen`, `speed`, and various
+ others. As part of this change many obsolete, duplicated, or one-off
+ examples were removed, while others were extended with new
+ functionality. Contributions of new subcommands, new bling for
+ exising ones, or documentation in any form is welcome.
* The internal directory structure has changed. Now all sources that
are built into libbotan are in the new directory `lib`, with `src`
containing all other sources such as the command line tool and build
scripts.
+
+* Fix a bug in Lion, which was broken by a change in 1.11.0. The
+ problem was not noticed before as Lion was also missing a test vector
+ in previous releases.