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.
This commit is contained in:
Alexandre Duret-Lutz 2013-07-29 01:08:25 +02:00
parent 9d6d53ed92
commit 9ed2d7a1dc
2 changed files with 16 additions and 1 deletions

4
NEWS
View file

@ -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:

View file

@ -20,7 +20,7 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>.
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