Skip to content

Commit 3108059

Browse files
committed
bump version to 1.11.0-alpha
1 parent d48217f commit 3108059

File tree

2 files changed

+9
-6
lines changed

2 files changed

+9
-6
lines changed

NEWS.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# MPB Release Notes
22

3+
## MPB 1.11-alpha
4+
5+
* More fine-grained control of output verbosity (#119).
6+
37
## MPB 1.10
48

59
2/19/20

configure.ac

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Process this file with autoconf to produce a configure script.
2-
AC_INIT(mpb, 1.10.0)
2+
AC_INIT(mpb, 1.11.0-alpha)
33
AC_CONFIG_SRCDIR([src/matrices/matrices.c])
44
AC_CONFIG_HEADER([config.h src/mpbconf.h])
55
AC_CONFIG_MACRO_DIR([m4])
@@ -8,12 +8,11 @@ AM_MAINTAINER_MODE
88
# Shared-library version number; indicates api compatibility, and is
99
# not the same as the "public" version number. (Don't worry about this
1010
# except for public releases.)
11-
SHARED_VERSION_INFO="4:1:3" # CURRENT:REVISION:AGE
11+
SHARED_VERSION_INFO="5:0:4" # CURRENT:REVISION:AGE
1212

13-
# note: must be consistent with API version above
14-
VERSION_MAJOR=1
15-
VERSION_MINOR=9
16-
VERSION_PATCH=0
13+
VERSION_MAJOR=`echo $PACKAGE_VERSION | cut -d. -f1`
14+
VERSION_MINOR=`echo $PACKAGE_VERSION | cut -d. -f2`
15+
VERSION_PATCH=`echo $PACKAGE_VERSION | cut -d. -f3 | cut -d- -f1`
1716
AC_DEFINE_UNQUOTED(MPB_VERSION_MAJOR, [$VERSION_MAJOR], [major version])
1817
AC_DEFINE_UNQUOTED(MPB_VERSION_MINOR, [$VERSION_MINOR], [minor version])
1918
AC_DEFINE_UNQUOTED(MPB_VERSION_PATCH, [$VERSION_PATCH], [patch version])

0 commit comments

Comments
 (0)