File tree 2 files changed +9
-6
lines changed
2 files changed +9
-6
lines changed Original file line number Diff line number Diff line change 1
1
# MPB Release Notes
2
2
3
+ ## MPB 1.11-alpha
4
+
5
+ * More fine-grained control of output verbosity (#119 ).
6
+
3
7
## MPB 1.10
4
8
5
9
2/19/20
Original file line number Diff line number Diff line change 1
1
# 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 )
3
3
AC_CONFIG_SRCDIR ( [ src/matrices/matrices.c] )
4
4
AC_CONFIG_HEADER([ config.h src/mpbconf.h] )
5
5
AC_CONFIG_MACRO_DIR ( [ m4] )
@@ -8,12 +8,11 @@ AM_MAINTAINER_MODE
8
8
# Shared-library version number; indicates api compatibility, and is
9
9
# not the same as the "public" version number. (Don't worry about this
10
10
# except for public releases.)
11
- SHARED_VERSION_INFO="4:1:3 " # CURRENT:REVISION:AGE
11
+ SHARED_VERSION_INFO="5:0:4 " # CURRENT:REVISION:AGE
12
12
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`
17
16
AC_DEFINE_UNQUOTED ( MPB_VERSION_MAJOR , [ $VERSION_MAJOR] , [ major version] )
18
17
AC_DEFINE_UNQUOTED ( MPB_VERSION_MINOR , [ $VERSION_MINOR] , [ minor version] )
19
18
AC_DEFINE_UNQUOTED ( MPB_VERSION_PATCH , [ $VERSION_PATCH] , [ patch version] )
You can’t perform that action at this time.
0 commit comments