# HG changeset patch # User Mike Miller # Date 1521153515 25200 # Node ID e4839b041cc4a93415d27da7da8108a88f4049bd # Parent df131a44310bc0d6f3360696bea501c526d469a0 maint: bump development branch to version 4.5.0+ * configure.ac (AC_INIT): Bump package version to 4.5.0+. (OCTAVE_MINOR_VERSION): Bump minor version number to 5. (OCTAVE_API_VERSION): Bump to api-v52+. diff -r df131a44310b -r e4839b041cc4 configure.ac --- a/configure.ac Thu Mar 15 15:04:41 2018 +0100 +++ b/configure.ac Thu Mar 15 15:38:35 2018 -0700 @@ -20,7 +20,7 @@ ### Initialize Autoconf AC_PREREQ([2.65]) -AC_INIT([GNU Octave], [4.3.0+], [http://octave.org/bugs.html], [octave]) +AC_INIT([GNU Octave], [4.5.0+], [http://octave.org/bugs.html], [octave]) ### Declare version numbers @@ -28,7 +28,7 @@ dnl AC_INIT requires it to be static, not computed from shell variables. OCTAVE_MAJOR_VERSION=4 -OCTAVE_MINOR_VERSION=3 +OCTAVE_MINOR_VERSION=5 OCTAVE_PATCH_VERSION=0+ dnl PACKAGE_VERSION is set by the AC_INIT VERSION argument. @@ -51,7 +51,7 @@ dnl FIXME: Since we also set libtool versions for liboctave and libinterp, dnl perhaps we should be computing the "api version" from those versions numbers dnl in some way instead of setting it independently here. -OCTAVE_API_VERSION="api-v51+" +OCTAVE_API_VERSION="api-v52+" AC_SUBST(OCTAVE_MAJOR_VERSION) AC_SUBST(OCTAVE_MINOR_VERSION)