Skip to content

Commit

Permalink
Version 9.3.0 released.
Browse files Browse the repository at this point in the history
* configure.ac (AC_INIT): Set version to 9.3.0.
(OCTAVE_MINOR_VERSION): Now 3.
(OCTAVE_PATCH_VERSION): Now 0.
(OCTAVE_RELEASE_DATE): Set to "2024-12-12".
* org.octave.Octave.appdata.xml: Add release info for version 9.3.0.
* CITATION: Update for 9.3.0.
* NEWS.9.md: Update release date.
  • Loading branch information
jweaton committed Dec 12, 2024
1 parent b09ad5e commit 316be78
Show file tree
Hide file tree
Showing 7 changed files with 16 additions and 15 deletions.
8 changes: 4 additions & 4 deletions CITATION
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
To cite GNU Octave in publications use:

John W. Eaton, David Bateman, Søren Hauberg, Rik Wehbring (2024).
GNU Octave version 9.2.0 manual: a high-level interactive language for
GNU Octave version 9.3.0 manual: a high-level interactive language for
numerical computations.
URL https://www.gnu.org/software/octave/doc/v9.2.0/
URL https://www.gnu.org/software/octave/doc/v9.3.0/

A BibTeX entry for LaTeX users is:

@manual{,
title = {{GNU Octave} version 9.2.0 manual: a high-level interactive language for numerical computations},
title = {{GNU Octave} version 9.3.0 manual: a high-level interactive language for numerical computations},
author = {John W. Eaton and David Bateman and S{\o}ren Hauberg and Rik Wehbring},
year = {2024},
url = {https://www.gnu.org/software/octave/doc/v9.2.0/},
url = {https://www.gnu.org/software/octave/doc/v9.3.0/},
}

We have invested a lot of time and effort in creating GNU Octave, please
Expand Down
8 changes: 4 additions & 4 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ dnl

### Initialize Autoconf
AC_PREREQ([2.65])
AC_INIT([GNU Octave], [9.2.1], [https://octave.org/bugs.html], [octave],
AC_INIT([GNU Octave], [9.3.0], [https://octave.org/bugs.html], [octave],
[https://www.gnu.org/software/octave/])

### Declare version numbers
Expand All @@ -40,15 +40,15 @@ dnl AC_INIT requires it to be static, not computed from shell variables.
## versions.

OCTAVE_MAJOR_VERSION=9
OCTAVE_MINOR_VERSION=2
OCTAVE_PATCH_VERSION=1
OCTAVE_MINOR_VERSION=3
OCTAVE_PATCH_VERSION=0

dnl PACKAGE_VERSION is set by the AC_INIT VERSION argument.
OCTAVE_VERSION="$PACKAGE_VERSION"

OCTAVE_COPYRIGHT="Copyright (C) 1993-2024 The Octave Project Developers."

OCTAVE_RELEASE_DATE="2024-06-01"
OCTAVE_RELEASE_DATE="2024-12-12"

## The "API version" is used as a way of checking that interfaces in the
## liboctave and libinterp libraries haven't changed in a backwardly
Expand Down
2 changes: 1 addition & 1 deletion etc/NEWS.9.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
For (bug #XXXXX) see https://savannah.gnu.org/bugs/?XXXXX

Summary of bugs fixed for version 9.3.0 (tbd):
Summary of bugs fixed for version 9.3.0 (2024-12-12):
-----------------------------------------------------

### Improvements and fixes
Expand Down
1 change: 1 addition & 0 deletions etc/icons/org.octave.Octave.metainfo.xml
Original file line number Diff line number Diff line change
Expand Up @@ -198,6 +198,7 @@ along with Octave; see the file COPYING. If not, see
</developer>
<content_rating type="oars-1.0"/>
<releases>
<release date="2024-12-12" version="9.3.0"/>
<release date="2024-06-01" version="9.2.0"/>
<release date="2024-03-14" version="9.1.0"/>
<release date="2023-11-05" version="8.4.0"/>
Expand Down
4 changes: 2 additions & 2 deletions libgui/module.mk
Original file line number Diff line number Diff line change
Expand Up @@ -64,9 +64,9 @@ nodist_%canon_reldir%_liboctgui_la_SOURCES = \
## Increment the following version numbers as needed and according
## to the rules in the etc/HACKING.md file:

%canon_reldir%_liboctgui_current = 12
%canon_reldir%_liboctgui_current = 13
%canon_reldir%_liboctgui_revision = 0
%canon_reldir%_liboctgui_age = 0
%canon_reldir%_liboctgui_age = 1

%canon_reldir%_liboctgui_version_info = $(%canon_reldir%_liboctgui_current):$(%canon_reldir%_liboctgui_revision):$(%canon_reldir%_liboctgui_age)

Expand Down
6 changes: 3 additions & 3 deletions libinterp/module.mk
Original file line number Diff line number Diff line change
Expand Up @@ -156,9 +156,9 @@ endif
## Increment the following version numbers as needed and according
## to the rules in the etc/HACKING.md file:

%canon_reldir%_liboctinterp_current = 12
%canon_reldir%_liboctinterp_revision = 1
%canon_reldir%_liboctinterp_age = 0
%canon_reldir%_liboctinterp_current = 13
%canon_reldir%_liboctinterp_revision = 0
%canon_reldir%_liboctinterp_age = 1

%canon_reldir%_liboctinterp_version_info = $(%canon_reldir%_liboctinterp_current):$(%canon_reldir%_liboctinterp_revision):$(%canon_reldir%_liboctinterp_age)

Expand Down
2 changes: 1 addition & 1 deletion liboctave/module.mk
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ nodist_%canon_reldir%_%canon_reldir%_la_SOURCES = \
## to the rules in the etc/HACKING.md file:

%canon_reldir%_%canon_reldir%_current = 11
%canon_reldir%_%canon_reldir%_revision = 1
%canon_reldir%_%canon_reldir%_revision = 2
%canon_reldir%_%canon_reldir%_age = 0

%canon_reldir%_%canon_reldir%_version_info = $(%canon_reldir%_%canon_reldir%_current):$(%canon_reldir%_%canon_reldir%_revision):$(%canon_reldir%_%canon_reldir%_age)
Expand Down

0 comments on commit 316be78

Please sign in to comment.