diff options
author | Martin Sustrik <sustrik@250bpm.com> | 2012-03-29 18:11:07 +0200 |
---|---|---|
committer | Martin Sustrik <sustrik@250bpm.com> | 2012-03-29 18:11:07 +0200 |
commit | b6079a3caff4f22de1c6efe2e3f428b2cf01c655 (patch) | |
tree | 1b0735194ae0a44f53fd8a0de1d430a11fe104ba | |
parent | 437db5a6c8348faa551a41b5ddb38072bd6924cb (diff) |
Version and ABI bumped to 1.0.1v1.0.1
Signed-off-by: Martin Sustrik <sustrik@250bpm.com>
-rw-r--r-- | configure.ac | 3 | ||||
-rw-r--r-- | include/xs.h | 2 |
2 files changed, 2 insertions, 3 deletions
diff --git a/configure.ac b/configure.ac index 2ba0f26..57c8c03 100644 --- a/configure.ac +++ b/configure.ac @@ -22,10 +22,9 @@ AC_SUBST(PACKAGE_VERSION) # Don't change this unless you know exactly what you're doing and have read and # understand: # http://www.gnu.org/software/libtool/manual/html_node/Updating-version-info.html -# This is currently set at ABI 1.0.0. # # libxs -version-info current:revision:age -LIBXS_ABI_VERSION="1:0:0" +LIBXS_ABI_VERSION="1:1:0" AC_SUBST(LIBXS_ABI_VERSION) # ABI version for XS libzmq compatibility library diff --git a/include/xs.h b/include/xs.h index 039d62f..2adea21 100644 --- a/include/xs.h +++ b/include/xs.h @@ -57,7 +57,7 @@ extern "C" { /* Version macros for compile-time API version detection */ #define XS_VERSION_MAJOR 1 #define XS_VERSION_MINOR 0 -#define XS_VERSION_PATCH 0 +#define XS_VERSION_PATCH 1 #define XS_MAKE_VERSION(major, minor, patch) \ ((major) * 10000 + (minor) * 100 + (patch)) |