1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-30 06:50:31 +02:00

Bump prerelease version numbering to 2.9.x

* GUILE-VERSION (GUILE_MINOR_VERSION): Bump to 9.
* NEWS: Update expected version numbers.
* configure.ac: Update pattern.
This commit is contained in:
Andy Wingo 2018-10-10 10:11:26 +02:00
parent 4aa4a6d590
commit 2b4999b8bb
3 changed files with 7 additions and 5 deletions

View file

@ -2,7 +2,7 @@
# Note: `GUILE_VERSION' is defined in `configure.ac' using `git-version-gen'. # Note: `GUILE_VERSION' is defined in `configure.ac' using `git-version-gen'.
GUILE_MAJOR_VERSION=2 GUILE_MAJOR_VERSION=2
GUILE_MINOR_VERSION=3 GUILE_MINOR_VERSION=9
GUILE_MICRO_VERSION=0 GUILE_MICRO_VERSION=0
GUILE_EFFECTIVE_VERSION=3.0 GUILE_EFFECTIVE_VERSION=3.0

8
NEWS
View file

@ -6,7 +6,7 @@ Please send Guile bug reports to bug-guile@gnu.org.
Changes in alpha 2.3.1 (since the stable 2.2 series): Changes in alpha 2.9.1 (since the stable 2.2 series):
* Notable changes * Notable changes
@ -20,11 +20,13 @@ of "eval" written in C, as in the days of Guile 1.8.
See "Just-In-Time Native Code" in the manual, for more information. JIT See "Just-In-Time Native Code" in the manual, for more information. JIT
compilation will be enabled automatically and transparently. To disable compilation will be enabled automatically and transparently. To disable
JIT compilation, configure Guile with `--enable-jit=no' or JIT compilation, configure Guile with `--enable-jit=no' or
`--disable-jit'. See `./configure --help' for more. `--disable-jit'. The default is `--enable-jit=auto', which enables the
JIT if it is available. See `./configure --help' for more.
In this release, JIT compilation is enabled only on x86-64. In future In this release, JIT compilation is enabled only on x86-64. In future
prereleases support will be added for all architectures supported by GNU prereleases support will be added for all architectures supported by GNU
lightning. lightning. Intrepid users on other platforms can try passing
`--enable-jit=yes' to see the state of JIT on their platform.
** Lower-level bytecode ** Lower-level bytecode

View file

@ -25,7 +25,7 @@ License along with Guile. If not, see
AC_PREREQ(2.61) AC_PREREQ(2.61)
AC_INIT([GNU Guile], AC_INIT([GNU Guile],
m4_esyscmd([build-aux/git-version-gen --match v2.3.\* .tarball-version]), m4_esyscmd([build-aux/git-version-gen --match v2.9.\* .tarball-version]),
[bug-guile@gnu.org]) [bug-guile@gnu.org])
AC_CONFIG_AUX_DIR([build-aux]) AC_CONFIG_AUX_DIR([build-aux])
AC_CONFIG_MACRO_DIR([m4]) AC_CONFIG_MACRO_DIR([m4])