From 56a0ce5ac435620c93a060600e9424ca950d15da Mon Sep 17 00:00:00 2001 From: Ivan Maidanski Date: Sat, 7 Sep 2024 11:49:48 +0300 Subject: [PATCH] [8.0.14] Bump gc version to 8.0.14 * ChangeLog (8.0.14): Set release date. * Makefile.am (LIBGC_VER_INFO): Increment revision (change version info of libgc.so to 5:8:4). * README.md: Bump micro version. * configure.ac (AC_INIT): Likewise. * include/gc_version.h (GC_TMP_VERSION_MICRO): Likewise. --- ChangeLog | 2 +- Makefile.am | 2 +- README.md | 2 +- configure.ac | 2 +- include/gc_version.h | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/ChangeLog b/ChangeLog index 83ffc9ce0..6192de3de 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,5 @@ -== [8.0.14] (not released yet) == +== [8.0.14] 2024-09-07 == * Disable backtrace saving at garbage collections if DONT_SAVE_TO_LAST_STACK diff --git a/Makefile.am b/Makefile.am index 6af5d4be8..bb39429a4 100644 --- a/Makefile.am +++ b/Makefile.am @@ -14,7 +14,7 @@ # Info (current:revision:age) for the Libtool versioning system. # These numbers should be updated at most once just before the release, # and, optionally, at most once during the development (after the release). -LIBGC_VER_INFO = 5:7:4 +LIBGC_VER_INFO = 5:8:4 LIBGCCPP_VER_INFO = 5:1:4 ## FIXME: `make distcheck' in this directory will not currently work. diff --git a/README.md b/README.md index d4b309a09..c4fefb2a9 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Boehm-Demers-Weiser Garbage Collector -This is version 8.0.12 of a conservative garbage +This is version 8.0.14 of a conservative garbage collector for C and C++. diff --git a/configure.ac b/configure.ac index bbe3cb27b..c6dcc45aa 100644 --- a/configure.ac +++ b/configure.ac @@ -14,7 +14,7 @@ dnl Process this file with autoconf to produce configure. dnl Initialization. -AC_INIT(gc,8.0.12,https://github.com/ivmai/bdwgc/issues) +AC_INIT(gc,8.0.14,https://github.com/ivmai/bdwgc/issues) dnl Version must conform to: [0-9]+[.][0-9]+[.][0-9]+ AC_CONFIG_SRCDIR(gcj_mlc.c) diff --git a/include/gc_version.h b/include/gc_version.h index 8b283967a..d2b62f11e 100644 --- a/include/gc_version.h +++ b/include/gc_version.h @@ -30,7 +30,7 @@ /* it to keep the old-style build process working. */ #define GC_TMP_VERSION_MAJOR 8 #define GC_TMP_VERSION_MINOR 0 -#define GC_TMP_VERSION_MICRO 12 /* 8.0.12 */ +#define GC_TMP_VERSION_MICRO 14 /* 8.0.14 */ #ifdef GC_VERSION_MAJOR # if GC_TMP_VERSION_MAJOR != GC_VERSION_MAJOR \