# HG changeset patch # User John W. Eaton # Date 1525107816 14400 # Node ID cf84db75ab57d4fc5d18682c6ecf9d2e1f66ea94 # Parent c8fc547ab5dd07129c444924d869924afeb41f29 Version 4.4.0 released. * configure.ac (AC_INIT): Set version to 4.4.0. (OCTAVE_MINOR_VERSION): Now 4. (OCTAVE_PATCH_VERSION): Now 0. (OCTAVE_RELEASE_DATE): Set to 2018-04-30. (NEWS): Set release date. diff -r c8fc547ab5dd -r cf84db75ab57 NEWS --- a/NEWS Mon Apr 30 06:55:32 2018 -0700 +++ b/NEWS Mon Apr 30 13:03:36 2018 -0400 @@ -1,4 +1,4 @@ -Summary of important user-visible changes for version 4.4 (yyyy-mm-dd): +Summary of important user-visible changes for version 4.4 (2018-04-30): ---------------------------------------------------------------------- ** A graphical Variable Editor has been added to the GUI interface. diff -r c8fc547ab5dd -r cf84db75ab57 configure.ac --- a/configure.ac Mon Apr 30 06:55:32 2018 -0700 +++ b/configure.ac Mon Apr 30 13:03:36 2018 -0400 @@ -20,7 +20,7 @@ ### Initialize Autoconf AC_PREREQ([2.65]) -AC_INIT([GNU Octave], [4.3.92], [https://octave.org/bugs.html], [octave], +AC_INIT([GNU Octave], [4.4.0], [https://octave.org/bugs.html], [octave], [https://www.gnu.org/software/octave/]) ### Declare version numbers @@ -29,15 +29,15 @@ dnl AC_INIT requires it to be static, not computed from shell variables. OCTAVE_MAJOR_VERSION=4 -OCTAVE_MINOR_VERSION=3 -OCTAVE_PATCH_VERSION=92 +OCTAVE_MINOR_VERSION=4 +OCTAVE_PATCH_VERSION=0 dnl PACKAGE_VERSION is set by the AC_INIT VERSION argument. OCTAVE_VERSION="$PACKAGE_VERSION" OCTAVE_COPYRIGHT="Copyright (C) 2018 John W. Eaton and others." -OCTAVE_RELEASE_DATE="2018-04-27" +OCTAVE_RELEASE_DATE="2018-04-30" ## The "API version" is used as a way of checking that interfaces in the ## liboctave and libinterp libraries haven't changed in a backwardly