Skip to content

Commit

Permalink
Merge pull request #188 from haydenroche5/110_release
Browse files Browse the repository at this point in the history
Prepare for 1.1.0 release.
  • Loading branch information
SparkiDev authored May 17, 2022
2 parents f76b343 + 7e5051a commit 9ea6fce
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 deletions.
9 changes: 9 additions & 0 deletions ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
# wolfEngine Release 1.1.0 (May 16, 2022)
* Updated README.md to refer to new wolfSSL configure flag `--enable-engine`.
* Fixed a double free bug in certain error cases in the ECC code.
* Added examples/ and engine.conf to the distribution.
* Fixed a bug in the AES-CTR implementation where partial block data from a
previous operation would leak into the current operation, even when the IV was
changed between operations.
* Added support for X9.31 padding with RSA signatures.

# wolfEngine Release 1.0.0 (March 7, 2022)
* Added the examples/ directory.
* Added logic to openssl-unit-tests.sh to support macOS.
Expand Down
4 changes: 2 additions & 2 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

AC_COPYRIGHT([Copyright (C) 2019-2021 wolfSSL Inc.])
AC_PREREQ([2.69])
AC_INIT([wolfengine], [1.0.0])
AC_INIT([wolfengine], [1.1.0])
AC_CONFIG_AUX_DIR([build-aux])

AC_CONFIG_HEADERS([include/config.h])
Expand All @@ -26,7 +26,7 @@ AC_PROG_CC
AC_LANG(C)

# shared library versioning
WOLFENGINE_LIBRARY_VERSION=1:0:0
WOLFENGINE_LIBRARY_VERSION=1:1:0
# | | |
# +------+ | +---+
# | | |
Expand Down

0 comments on commit 9ea6fce

Please sign in to comment.