From 9ed2d7a1dce605271835352a1fc711d19d7c0c97 Mon Sep 17 00:00:00 2001 From: Alexandre Duret-Lutz Date: Mon, 29 Jul 2013 01:08:25 +0200 Subject: [PATCH] Bump version to 1.1.4a. * NEWS: Bump version. * configure.ac: Bump version, and add a banner about this being a development version at the end. --- NEWS | 4 ++++ configure.ac | 13 ++++++++++++- 2 files changed, 16 insertions(+), 1 deletion(-) diff --git a/NEWS b/NEWS index ee0f1b3fe..8ba7ac75f 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,7 @@ +New in spot 1.1.4a (not relased) + + Nothing yet. + New in spot 1.1.4 (2013-07-29) * Bug fixes: diff --git a/configure.ac b/configure.ac index 506c3b12c..593f0e1e8 100644 --- a/configure.ac +++ b/configure.ac @@ -20,7 +20,7 @@ # along with this program. If not, see . AC_PREREQ([2.61]) -AC_INIT([spot], [1.1.4], [spot@lrde.epita.fr]) +AC_INIT([spot], [1.1.4a], [spot@lrde.epita.fr]) AC_CONFIG_AUX_DIR([tools]) AC_CONFIG_MACRO_DIR([m4]) AM_INIT_AUTOMAKE([1.11 gnu tar-ustar color-tests parallel-tests]) @@ -175,3 +175,14 @@ AC_CONFIG_FILES([ AC_CONFIG_FILES([doc/dot], [chmod +x doc/dot]) AC_CONFIG_FILES([wrap/python/tests/run], [chmod +x wrap/python/tests/run]) AC_OUTPUT + +case $VERSION:$enable_devel in + *[[abcdefghijklmnopqrstuvwxyz]]:yes) + echo + echo '===================================================================' + echo ' This is a development version of Spot: Assertions and debuging ' + echo ' code are enabled by default. If you find this too slow or ' + echo ' plan to do some benchmarking, run configure with --disable-devel. ' + echo '===================================================================' + ;; +esac