wolfTPM LTS version v2.7.3.

v2.7.0-lts
David Garske 2024-04-24 10:40:24 -07:00
parent 9853e5e4d9
commit d68b06efed
4 changed files with 16 additions and 5 deletions

View File

@ -21,7 +21,7 @@
cmake_minimum_required(VERSION 3.16)
project(wolfTPM VERSION 2.7.2 LANGUAGES C)
project(wolfTPM VERSION 2.7.3 LANGUAGES C)
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/bin)
set(WOLFTPM_DEFINITIONS)

View File

@ -1,5 +1,16 @@
# Release Notes
## wolfTPM Release 2.7.3 (Apr 24, 2024) - LTS
**Summary**
Long Term Support Release
**Detail**
* Fixed `TPM2_CommandProcess` to allow unique handles (from PR #266). See ZD 17817
* Fixed build issues with `netdb.h` (from PR #332 and #333)
## wolfTPM Release 2.7.2 (Feb 27, 2024) - LTS
**Summary**

View File

@ -3,7 +3,7 @@
# All right reserved.
AC_COPYRIGHT([Copyright (C) 2014-2021 wolfSSL Inc.])
AC_INIT([wolftpm],[2.7.2],[https://github.com/wolfssl/wolfTPM/issues],[wolftpm],[http://www.wolfssl.com])
AC_INIT([wolftpm],[2.7.3],[https://github.com/wolfssl/wolfTPM/issues],[wolftpm],[http://www.wolfssl.com])
AC_PREREQ([2.63])
AC_CONFIG_AUX_DIR([build-aux])
@ -23,7 +23,7 @@ AC_ARG_PROGRAM
AC_CONFIG_MACRO_DIR([m4])
AC_CONFIG_HEADERS([src/config.h])
WOLFTPM_LIBRARY_VERSION=15:2:0
WOLFTPM_LIBRARY_VERSION=15:3:0
# | | |
# +------+ | +---+
# | | |

View File

@ -34,8 +34,8 @@
extern "C" {
#endif
#define LIBWOLFTPM_VERSION_STRING "2.7.2"
#define LIBWOLFTPM_VERSION_HEX 0x02007002
#define LIBWOLFTPM_VERSION_STRING "2.7.3"
#define LIBWOLFTPM_VERSION_HEX 0x02007003
#ifdef __cplusplus
}