Skip to content

Commit 600fb26

Browse files
committed
bump version to 2.6.2
1 parent b9c79b5 commit 600fb26

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

configure.ac

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,9 +58,10 @@ AC_SUBST([PACKAGE_VERSION])
5858
# parasail version 2.5.0: 8:0:0 (ABI version 8) new struct attrs, added functions
5959
# parasail version 2.6.0: 9:0:1 (ABI version 9) added functions
6060
# parasail version 2.6.1: 9:1:1 (ABI version 9)
61+
# parasail version 2.6.2: 9:2:1 (ABI version 9) bugfix existing functions
6162
#
6263
# libparasail -version-info current:revision:age
63-
LTVER="9:1:1"
64+
LTVER="9:2:1"
6465
AC_SUBST([LTVER])
6566

6667
###############################################################################

parasail.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ extern "C" {
1818
/* Version macros for compile-time API version detection */
1919
#define PARASAIL_VERSION_MAJOR 2
2020
#define PARASAIL_VERSION_MINOR 6
21-
#define PARASAIL_VERSION_PATCH 1
21+
#define PARASAIL_VERSION_PATCH 2
2222

2323
#define PARASAIL_MAKE_VERSION(major, minor, patch) \
2424
((major) * 10000 + (minor) * 100 + (patch))

0 commit comments

Comments
 (0)