Skip to content

Commit 3aa2266

Browse files
pablodelaramdcornu
authored andcommitted
build: Bump revision to 2.25
Signed-off-by: Pablo de Lara <[email protected]>
1 parent 6e4f8c0 commit 3aa2266

7 files changed

+11
-12
lines changed

Makefile.am

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ include fips/Makefile.am
5555

5656
# LIB version info not necessarily the same as package version
5757
LIBISAL_CURRENT=2
58-
LIBISAL_REVISION=24
58+
LIBISAL_REVISION=25
5959
LIBISAL_AGE=0
6060

6161
lib_LTLIBRARIES = libisal_crypto.la

Release_notes.txt

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
================================================================================
2-
v2.24 Intel Intelligent Storage Acceleration Library Crypto Release Notes
2+
v2.25 Intel Intelligent Storage Acceleration Library Crypto Release Notes
33
================================================================================
44

55
================================================================================
@@ -22,7 +22,7 @@ RELEASE NOTE CONTENTS
2222
================================================================================
2323
2. FIXED ISSUES
2424
================================================================================
25-
Unreleased
25+
v2.25
2626

2727
* Fixed build with gcc 11.1.
2828

@@ -79,7 +79,7 @@ v2.7
7979
================================================================================
8080
3. CHANGE LOG & FEATURES ADDED
8181
================================================================================
82-
Unreleased
82+
v2.25
8383

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

configure.ac

+3-4
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,9 @@
33

44
AC_PREREQ(2.69)
55
AC_INIT([libisal_crypto],
6-
[2.24.0],
7-
8-
[isa-l_crypto],
9-
[http://01.org/storage-acceleration-library])
6+
[2.25.0],
7+
[https://github.com/intel/isa-l_crypto/issues],
8+
[isa-l_crypto])
109
AC_CONFIG_SRCDIR([])
1110
AC_CONFIG_AUX_DIR([build-aux])
1211
AM_INIT_AUTOMAKE([

include/isal_crypto_api.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ extern "C" {
4242

4343
/* Library version numbers */
4444
#define ISAL_CRYPTO_MAJOR_VERSION 2
45-
#define ISAL_CRYPTO_MINOR_VERSION 24
45+
#define ISAL_CRYPTO_MINOR_VERSION 25
4646
#define ISAL_CRYPTO_PATCH_VERSION 0
4747

4848
#define ISAL_CRYPTO_MAKE_VERSION(maj, min, patch) ((maj) * 0x10000 + (min) * 0x100 + (patch))

isa-l_crypto.def

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
LIBRARY isa-l_crypto
2-
VERSION 2.24
2+
VERSION 2.25
33
EXPORTS
44

55
sha1_ctx_mgr_init @1

make.inc

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
# trace - get simulator trace
4040
# clean - remove object files
4141

42-
version ?= 2.24.0
42+
version ?= 2.25.0
4343

4444

4545

misc/version_test.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ main(void)
3636
{
3737
#ifdef ISAL_CRYPTO_VERSION_STR
3838
/* Check version number */
39-
if (isal_crypto_get_version() < ISAL_CRYPTO_MAKE_VERSION(2, 24, 0)) {
39+
if (isal_crypto_get_version() < ISAL_CRYPTO_MAKE_VERSION(2, 25, 0)) {
4040
printf("Library version detection unsupported!\n");
4141
} else {
4242
printf("Detected library version: %s\n", isal_crypto_get_version_str());

0 commit comments

Comments
 (0)