Skip to content

Commit

Permalink
version: Roll the version to 2.2.0
Browse files Browse the repository at this point in the history
Update the ChangeLog.  A few features are added to
the command line utilities.

Signed-off-by: Ken Goldman <[email protected]>
  • Loading branch information
kgold2 committed Feb 14, 2024
1 parent bc7eeb6 commit 0b9d77e
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 8 deletions.
18 changes: 18 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,21 @@
----------------
Changes in 2.2.0
----------------

Add support for loadexternal schemes

Fix ObjectTemplates to accept caller curveID

Add Nuvoton configure utilities to VS projects

ifdef out functions deprecated with openssl 3.x

Recode the OpenSSL pkeyutl uses. OpenSSL 3.x no longer ignores the
oaep hash algorithm for the pkcs1 scheme.

Add userWithAuth to unseal policy sample scripts. This is best
practice.

----------------
Changes in 2.1.1
----------------
Expand Down
6 changes: 3 additions & 3 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@

# Set package release version"
# After committing set git tag version.
AC_INIT(ibmtss, 2.1.1, [email protected])
AC_INIT(ibmtss, 2.2.0, [email protected])
AC_PREREQ([2.63])

# Convert major.minor.micro to libtool versioning (current-revision-age)
TSSLIB_VER_MAJOR=2
TSSLIB_VER_MINOR=1
TSSLIB_VER_MICRO=1
TSSLIB_VER_MINOR=2
TSSLIB_VER_MICRO=0
TSSLIB_VERSION_INFO=`expr $TSSLIB_VER_MAJOR + $TSSLIB_VER_MINOR`:$TSSLIB_VER_MICRO:$TSSLIB_VER_MINOR
AC_SUBST([TSSLIB_VERSION_INFO], [$TSSLIB_VERSION_INFO])

Expand Down
6 changes: 3 additions & 3 deletions utils/makefiletpm20
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# Written by Ken Goldman #
# IBM Thomas J. Watson Research Center #
# #
# (c) Copyright IBM Corporation 2014 - 2022 #
# (c) Copyright IBM Corporation 2014 - 2024 #
# #
# All rights reserved. #
# #
Expand Down Expand Up @@ -140,7 +140,7 @@ LNALIBS += -libmtssutils -libmtss
# shared library

# versioned shared library
LIBTSSVERSIONED=libibmtss.so.2.1
LIBTSSVERSIONED=libibmtss.so.2.2

# soname field of the shared library
# which will be made symbolic link to the versioned shared library
Expand All @@ -159,7 +159,7 @@ endif

# TSS utilities shared library

LIBTSSUTILSVERSIONED=libibmtssutils.so.2.1
LIBTSSUTILSVERSIONED=libibmtssutils.so.2.2
LIBTSSUTILSSONAME=libibmtssutils.so.2
LIBTSSUTILS=libibmtssutils.so

Expand Down
4 changes: 2 additions & 2 deletions utils/makefiletpmc
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ LNALIBS += -libmtssutils -libmtss
# shared library

# versioned shared library
LIBTSSVERSIONED=libibmtss.so.2.1
LIBTSSVERSIONED=libibmtss.so.2.2

# soname field of the shared library
# which will be made symbolic link to the versioned shared library
Expand All @@ -127,7 +127,7 @@ endif

# TSS utilities shared library

LIBTSSUTILSVERSIONED=libibmtssutils.so.2.1
LIBTSSUTILSVERSIONED=libibmtssutils.so.2.2
LIBTSSUTILSSONAME=libibmtssutils.so.2
LIBTSSUTILS=libibmtssutils.so

Expand Down

0 comments on commit 0b9d77e

Please sign in to comment.