mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-04-29 19:30:36 +02:00
* GUILE-VERSION: Bump version to 2.3.0, and effective version to 3.0. * .gitignore: * README: * doc/guile.1: * doc/ref/api-evaluation.texi: * doc/ref/api-options.texi: * doc/ref/guile-invoke.texi: * doc/ref/libguile-foreign-objects.texi: * doc/ref/libguile-parallel.texi: * doc/ref/srfi-modules.texi: Update to 3.0. * libguile/_scm.h (SCM_OBJCODE_MAJOR_VERSION): (SCM_OBJCODE_MINIMUM_MINOR_VERSION, SCM_OBJCODE_MINOR_VERSION): Bump bytecode version for fallback path. * libguile/loader.c: Update to avoid loading version 2.2 bytecode files. * meta/guile-3.0-uninstalled.pc.in: * meta/guile-3.0.pc.in: Rename. * module/system/vm/assembler.scm (*bytecode-major-version*): (*bytecode-minor-version*): Write the new bytecode version.
22 lines
692 B
Bash
22 lines
692 B
Bash
# -*-shell-script-*-
|
|
|
|
# Note: `GUILE_VERSION' is defined in `configure.ac' using `git-version-gen'.
|
|
GUILE_MAJOR_VERSION=2
|
|
GUILE_MINOR_VERSION=3
|
|
GUILE_MICRO_VERSION=0
|
|
|
|
GUILE_EFFECTIVE_VERSION=3.0
|
|
|
|
|
|
# All of the shared lib versioning info. Right now, for this to work
|
|
# properly, you'll also need to add AC_SUBST calls to the right place
|
|
# in configure.in, add the right -version-info statement to your
|
|
# Makefile.am.
|
|
|
|
# See libtool info pages for more information on how and when to
|
|
# change these.
|
|
|
|
LIBGUILE_INTERFACE_CURRENT=0
|
|
LIBGUILE_INTERFACE_REVISION=0
|
|
LIBGUILE_INTERFACE_AGE=0
|
|
LIBGUILE_INTERFACE="${LIBGUILE_INTERFACE_CURRENT}:${LIBGUILE_INTERFACE_REVISION}:${LIBGUILE_INTERFACE_AGE}"
|