Skip to content

Commit

Permalink
Merge pull request #202 from cconlon/v1.3.0
Browse files Browse the repository at this point in the history
Prepare or 1.3.0 release
  • Loading branch information
JacobBarthelmeh authored Jan 14, 2023
2 parents 2126403 + 06c5148 commit 2c34a40
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 4 deletions.
5 changes: 5 additions & 0 deletions ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# wolfEngine Release 1.3.0 (January 16, 2023)
* Added RPM package support
* Added support and tests for OpenSSL HMAC to be called with -1 key length
* Updated examples to support use with OpenSSL 1.0.2

# wolfEngine Release 1.2.0 (September 29, 2022)
* ChangeLog.md is now shipped with releases.
* Random number generation now mixes in some additional weak entropy (e.g. PID)
Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,8 @@ Use this configure command:
./configure --enable-engine
```

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

Expand Down
6 changes: 3 additions & 3 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.2.0])
AC_INIT([wolfengine], [1.3.0])
AC_CONFIG_AUX_DIR([build-aux])

AC_CONFIG_HEADERS([include/config.h])
Expand Down Expand Up @@ -33,8 +33,8 @@ AC_SUBST([WOLFENGINE_CONFIG_ARGS])
# these numbers don't always line up nicely with the library version.
WOLFENGINE_LIBRARY_VERSION_FIRST=1
WOLFENGINE_LIBRARY_VERSION_SECOND=0
WOLFENGINE_LIBRARY_VERSION_THIRD=2
WOLFENGINE_LIBRARY_VERSION=1:2:0
WOLFENGINE_LIBRARY_VERSION_THIRD=3
WOLFENGINE_LIBRARY_VERSION=1:3:0
# | | |
# +------+ | +---+
# | | |
Expand Down

0 comments on commit 2c34a40

Please sign in to comment.