Skip to content

Commit 06c5148

Browse files
committed
Prepare or 1.3.0 release
1 parent 2126403 commit 06c5148

File tree

3 files changed

+10
-4
lines changed

3 files changed

+10
-4
lines changed

ChangeLog.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
# wolfEngine Release 1.3.0 (January 16, 2023)
2+
* Added RPM package support
3+
* Added support and tests for OpenSSL HMAC to be called with -1 key length
4+
* Updated examples to support use with OpenSSL 1.0.2
5+
16
# wolfEngine Release 1.2.0 (September 29, 2022)
27
* ChangeLog.md is now shipped with releases.
38
* Random number generation now mixes in some additional weak entropy (e.g. PID)

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,8 @@ Use this configure command:
7575
./configure --enable-engine
7676
```
7777

78-
This adds support for `fips=v2` automatically. Replace this with
78+
This adds support for `--enable-engine=fips-v2` automatically. Replace this with
79+
`--enable-engine=fips-v5` if using a FIPSv5 140-3 bundle. Replace this with
7980
`--enable-engine=fips-ready` if using a FIPS Ready bundle. If your wolfSSL
8081
version doesn't support `--enable-engine`, use this instead:
8182

configure.ac

Lines changed: 3 additions & 3 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.2.0])
8+
AC_INIT([wolfengine], [1.3.0])
99
AC_CONFIG_AUX_DIR([build-aux])
1010

1111
AC_CONFIG_HEADERS([include/config.h])
@@ -33,8 +33,8 @@ AC_SUBST([WOLFENGINE_CONFIG_ARGS])
3333
# these numbers don't always line up nicely with the library version.
3434
WOLFENGINE_LIBRARY_VERSION_FIRST=1
3535
WOLFENGINE_LIBRARY_VERSION_SECOND=0
36-
WOLFENGINE_LIBRARY_VERSION_THIRD=2
37-
WOLFENGINE_LIBRARY_VERSION=1:2:0
36+
WOLFENGINE_LIBRARY_VERSION_THIRD=3
37+
WOLFENGINE_LIBRARY_VERSION=1:3:0
3838
# | | |
3939
# +------+ | +---+
4040
# | | |

0 commit comments

Comments
 (0)