Skip to content

Commit 7e5051a

Browse files
committed
Prepare for 1.1.0 release.
1 parent f76b343 commit 7e5051a

File tree

2 files changed

+11
-2
lines changed

2 files changed

+11
-2
lines changed

ChangeLog.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
# wolfEngine Release 1.1.0 (May 16, 2022)
2+
* Updated README.md to refer to new wolfSSL configure flag `--enable-engine`.
3+
* Fixed a double free bug in certain error cases in the ECC code.
4+
* Added examples/ and engine.conf to the distribution.
5+
* Fixed a bug in the AES-CTR implementation where partial block data from a
6+
previous operation would leak into the current operation, even when the IV was
7+
changed between operations.
8+
* Added support for X9.31 padding with RSA signatures.
9+
110
# wolfEngine Release 1.0.0 (March 7, 2022)
211
* Added the examples/ directory.
312
* Added logic to openssl-unit-tests.sh to support macOS.

configure.ac

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
AC_COPYRIGHT([Copyright (C) 2019-2021 wolfSSL Inc.])
77
AC_PREREQ([2.69])
8-
AC_INIT([wolfengine], [1.0.0])
8+
AC_INIT([wolfengine], [1.1.0])
99
AC_CONFIG_AUX_DIR([build-aux])
1010

1111
AC_CONFIG_HEADERS([include/config.h])
@@ -26,7 +26,7 @@ AC_PROG_CC
2626
AC_LANG(C)
2727

2828
# shared library versioning
29-
WOLFENGINE_LIBRARY_VERSION=1:0:0
29+
WOLFENGINE_LIBRARY_VERSION=1:1:0
3030
# | | |
3131
# +------+ | +---+
3232
# | | |

0 commit comments

Comments
 (0)