Skip to content

Commit

Permalink
build: Bump revision to 2.25
Browse files Browse the repository at this point in the history
Signed-off-by: Pablo de Lara <pablo.de.lara.guarch@intel.com>
  • Loading branch information
pablodelara authored and mdcornu committed May 28, 2024
1 parent 6e4f8c0 commit 3aa2266
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 12 deletions.
2 changes: 1 addition & 1 deletion Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ include fips/Makefile.am

# LIB version info not necessarily the same as package version
LIBISAL_CURRENT=2
LIBISAL_REVISION=24
LIBISAL_REVISION=25
LIBISAL_AGE=0

lib_LTLIBRARIES = libisal_crypto.la
Expand Down
6 changes: 3 additions & 3 deletions Release_notes.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
================================================================================
v2.24 Intel Intelligent Storage Acceleration Library Crypto Release Notes
v2.25 Intel Intelligent Storage Acceleration Library Crypto Release Notes
================================================================================

================================================================================
Expand All @@ -22,7 +22,7 @@ RELEASE NOTE CONTENTS
================================================================================
2. FIXED ISSUES
================================================================================
Unreleased
v2.25

* Fixed build with gcc 11.1.

Expand Down Expand Up @@ -79,7 +79,7 @@ v2.7
================================================================================
3. CHANGE LOG & FEATURES ADDED
================================================================================
Unreleased
v2.25

* Added new API including parameter checking (starting with isal_ prefix).

Expand Down
7 changes: 3 additions & 4 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,9 @@

AC_PREREQ(2.69)
AC_INIT([libisal_crypto],
[2.24.0],
[sg.support.isal@intel.com],
[isa-l_crypto],
[http://01.org/storage-acceleration-library])
[2.25.0],
[https://github.com/intel/isa-l_crypto/issues],
[isa-l_crypto])
AC_CONFIG_SRCDIR([])
AC_CONFIG_AUX_DIR([build-aux])
AM_INIT_AUTOMAKE([
Expand Down
2 changes: 1 addition & 1 deletion include/isal_crypto_api.h
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ extern "C" {

/* Library version numbers */
#define ISAL_CRYPTO_MAJOR_VERSION 2
#define ISAL_CRYPTO_MINOR_VERSION 24
#define ISAL_CRYPTO_MINOR_VERSION 25
#define ISAL_CRYPTO_PATCH_VERSION 0

#define ISAL_CRYPTO_MAKE_VERSION(maj, min, patch) ((maj) * 0x10000 + (min) * 0x100 + (patch))
Expand Down
2 changes: 1 addition & 1 deletion isa-l_crypto.def
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
LIBRARY isa-l_crypto
VERSION 2.24
VERSION 2.25
EXPORTS

sha1_ctx_mgr_init @1
Expand Down
2 changes: 1 addition & 1 deletion make.inc
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
# trace - get simulator trace
# clean - remove object files

version ?= 2.24.0
version ?= 2.25.0



Expand Down
2 changes: 1 addition & 1 deletion misc/version_test.c
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ main(void)
{
#ifdef ISAL_CRYPTO_VERSION_STR
/* Check version number */
if (isal_crypto_get_version() < ISAL_CRYPTO_MAKE_VERSION(2, 24, 0)) {
if (isal_crypto_get_version() < ISAL_CRYPTO_MAKE_VERSION(2, 25, 0)) {
printf("Library version detection unsupported!\n");
} else {
printf("Detected library version: %s\n", isal_crypto_get_version_str());
Expand Down

0 comments on commit 3aa2266

Please sign in to comment.