Skip to content

Commit

Permalink
bump version to 2.6.2
Browse files Browse the repository at this point in the history
  • Loading branch information
jeffdaily committed Mar 10, 2023
1 parent b9c79b5 commit 600fb26
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -58,9 +58,10 @@ AC_SUBST([PACKAGE_VERSION])
# parasail version 2.5.0: 8:0:0 (ABI version 8) new struct attrs, added functions
# parasail version 2.6.0: 9:0:1 (ABI version 9) added functions
# parasail version 2.6.1: 9:1:1 (ABI version 9)
# parasail version 2.6.2: 9:2:1 (ABI version 9) bugfix existing functions
#
# libparasail -version-info current:revision:age
LTVER="9:1:1"
LTVER="9:2:1"
AC_SUBST([LTVER])

###############################################################################
Expand Down
2 changes: 1 addition & 1 deletion parasail.h
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ extern "C" {
/* Version macros for compile-time API version detection */
#define PARASAIL_VERSION_MAJOR 2
#define PARASAIL_VERSION_MINOR 6
#define PARASAIL_VERSION_PATCH 1
#define PARASAIL_VERSION_PATCH 2

#define PARASAIL_MAKE_VERSION(major, minor, patch) \
((major) * 10000 + (minor) * 100 + (patch))
Expand Down

0 comments on commit 600fb26

Please sign in to comment.