From 318a3e6b2d35f2b2d6aed385c77bd805763c4938 Mon Sep 17 00:00:00 2001 From: Mimi Zohar Date: Fri, 22 Oct 2021 15:33:01 -0400 Subject: [PATCH] Release version 1.4 Updated both the release and library (ABI change) versions. See the NEWS file for a short summary and the git history for details. Signed-off-by: Mimi Zohar --- NEWS | 20 ++++++++++++++++++++ configure.ac | 2 +- packaging/ima-evm-utils.spec | 2 +- src/Makefile.am | 2 +- 4 files changed, 23 insertions(+), 3 deletions(-) diff --git a/NEWS b/NEWS index 1530eb3..ea3a3b5 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,23 @@ +2021-10-22 Mimi Zohar + + version 1.4: + * Elliptic curve support and tests + * PKCS11 support and tests + * Ability to manually specify the keyid included in the IMA xattr + * Improve IMA measurement list per TPM bank verification + * Linking with IBM TSS + * Set default hash algorithm in package configuration + * (Minimal) support and test EVM portable signatures + * CI testing: + * Refresh and include new distros + * Podman support + * GitHub Actions + * Limit "sudo" usage + * Misc bug fixes and code cleanup + * Fix static analysis bug reports, memory leaks + * Remove experimental code that was never upstreamed in the kernel + * Use unsigned variable, remove unused variables, etc + 2020-10-28 Mimi Zohar version 1.3.2: diff --git a/configure.ac b/configure.ac index aff6fdf..1a0f093 100644 --- a/configure.ac +++ b/configure.ac @@ -1,7 +1,7 @@ # autoconf script AC_PREREQ([2.65]) -AC_INIT(ima-evm-utils, 1.3.2, zohar@linux.ibm.com) +AC_INIT(ima-evm-utils, 1.4, zohar@linux.ibm.com) AM_INIT_AUTOMAKE([foreign]) AC_CONFIG_HEADERS([config.h]) AC_CONFIG_MACRO_DIR([m4]) diff --git a/packaging/ima-evm-utils.spec b/packaging/ima-evm-utils.spec index c342cc0..3dce7a1 100644 --- a/packaging/ima-evm-utils.spec +++ b/packaging/ima-evm-utils.spec @@ -1,5 +1,5 @@ Name: ima-evm-utils -Version: 1.3.2 +Version: 1.4 Release: 1%{?dist} Summary: ima-evm-utils - IMA/EVM control utility Group: System/Libraries diff --git a/src/Makefile.am b/src/Makefile.am index f89d971..396496b 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -4,7 +4,7 @@ libimaevm_la_SOURCES = libimaevm.c libimaevm_la_CPPFLAGS = $(AM_CPPFLAGS) $(LIBCRYPTO_CFLAGS) # current[:revision[:age]] # result: [current-age].age.revision -libimaevm_la_LDFLAGS = -version-info 2:0:0 +libimaevm_la_LDFLAGS = -version-info 3:0:0 libimaevm_la_LIBADD = $(LIBCRYPTO_LIBS) include_HEADERS = imaevm.h