Skip to content

Commit

Permalink
Merge pull request #250 from dgarske/rel-2.7.0
Browse files Browse the repository at this point in the history
wolfTPM v2.7.0 release prep
  • Loading branch information
JacobBarthelmeh authored Dec 28, 2022
2 parents 04908e5 + 4160930 commit a0bd9fe
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 5 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

cmake_minimum_required(VERSION 3.16)

project(wolfTPM VERSION 2.6.0 LANGUAGES C)
project(wolfTPM VERSION 2.7.0 LANGUAGES C)

set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/bin)
set(WOLFTPM_DEFINITIONS)
Expand Down
16 changes: 16 additions & 0 deletions ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
# Release Notes

## wolfTPM Release 2.7.0 (Dec 27, 2022)

**Summary**

Added Infineon TriCore HAL support and examples for Keyed Hash / NV counter increment. Minor fixes for NV auth and Keyed Hash.

**Detail**
* Support for Infineon TriCore (TC2XX/TC3XX) using macro `WOLFTPM_INFINEON_TRICORE` (PR #229)
* Added NV counter increment example (PR #243)
* Added Key Generation example for Keyed Hash. (PR #245)
* Fixed for Keyed Hash with HMAC (PR #243)
* Fixed for NV auth handling (PR #243)
* Fixed missing call to `Close()`, since Windows won't flush unless its called (PR #242)
* Fixed `tpm2.c` issue with variable declarations not being at top of function (PR #246)


## wolfTPM Release 2.6 (09/01/2022)

**Summary**
Expand Down
4 changes: 2 additions & 2 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# All right reserved.

AC_COPYRIGHT([Copyright (C) 2014-2021 wolfSSL Inc.])
AC_INIT([wolftpm],[2.6.0],[https://github.com/wolfssl/wolfTPM/issues],[wolftpm],[http://www.wolfssl.com])
AC_INIT([wolftpm],[2.7.0],[https://github.com/wolfssl/wolfTPM/issues],[wolftpm],[http://www.wolfssl.com])

AC_PREREQ([2.63])
AC_CONFIG_AUX_DIR([build-aux])
Expand Down Expand Up @@ -141,7 +141,7 @@ AC_ARG_WITH(wolfcrypt,
[AC_HELP_STRING([--with-wolfcrypt=PATH], [PATH to wolfssl install (default /usr/local)])],
[
if test "x$withval" != "xno" ; then
if test -d "${withval}/lib" && test -d "${withval}/include"; then
if test -d "${withval}/lib" && test -d "${withval}/include"; then
wcpath=${withval}
else
AC_MSG_ERROR([wolfCrypt path error (${withval}): missing lib and include])
Expand Down
4 changes: 2 additions & 2 deletions wolftpm/version.h
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@
extern "C" {
#endif

#define LIBWOLFTPM_VERSION_STRING "2.6.0"
#define LIBWOLFTPM_VERSION_HEX 0x02006000
#define LIBWOLFTPM_VERSION_STRING "2.7.0"
#define LIBWOLFTPM_VERSION_HEX 0x02007000

#ifdef __cplusplus
}
Expand Down

0 comments on commit a0bd9fe

Please sign in to comment.