From 441d21c4ad5efe7481d44315d6124354c9144a6d Mon Sep 17 00:00:00 2001 From: Ivan Maidanski Date: Sat, 7 Sep 2024 09:39:30 +0300 Subject: [PATCH] [7.4.28] Bump gc version to 7.4.28 * ChangeLog (7.4.28): Set release date. * Makefile.am (LIBGC_VER_INFO): Increment revision (change version info of libgc.so to 3:10:2). * README.md: Bump micro version (to 7.4.28). * 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 256b20482..627cad5cc 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,5 @@ -== [7.4.28] (not released yet) == +== [7.4.28] 2024-09-07 == * Avoid gcc stringop-overflow warning for intended overflow in smashtest * Do not provide call stack saving by backtrace() at garbage collection diff --git a/Makefile.am b/Makefile.am index c51e7fffe..6f6cf0c01 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 = 3:9:2 +LIBGC_VER_INFO = 3:10:2 LIBGCCPP_VER_INFO = 3:1:2 ## FIXME: `make distcheck' in this directory will not currently work. diff --git a/README.md b/README.md index 8a3bd9462..726628792 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Boehm-Demers-Weiser Garbage Collector -This is version 7.4.26 of a conservative garbage collector for C and C++. +This is version 7.4.28 of a conservative garbage collector for C and C++. ## Download diff --git a/configure.ac b/configure.ac index 0d6b5dc50..7db8023e0 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,7.4.26,https://github.com/ivmai/bdwgc/issues) +AC_INIT(gc,7.4.28,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 89aa3e64b..8440e5155 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 7 #define GC_TMP_VERSION_MINOR 4 -#define GC_TMP_VERSION_MICRO 26 /* 7.4.26 */ +#define GC_TMP_VERSION_MICRO 28 /* 7.4.28 */ #ifdef GC_VERSION_MAJOR # if GC_TMP_VERSION_MAJOR != GC_VERSION_MAJOR \