Skip to content

Commit fdbd5b5

Browse files
committed
[7.4.26]
Bump gc version to 7.4.26 * ChangeLog (7.4.26): Set release date. * Makefile.am (LIBGC_VER_INFO): Increment revision (change version info of libgc.so to 3:9:2). * README.md: Bump micro version (to 7.4.26). * configure.ac (AC_INIT): Likewise. * include/gc_version.h (GC_TMP_VERSION_MICRO): Likewise.
1 parent 97893a3 commit fdbd5b5

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

ChangeLog

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

2-
== [7.4.26] (not released yet) ==
2+
== [7.4.26] 2024-02-03 ==
33

44
* Eliminate 'unused parameter' gcc warning in free() if IGNORE_FREE
55
* Eliminate 'unused value' gcc warnings in init_global_static_roots (Symbian)

Makefile.am

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
# Info (current:revision:age) for the Libtool versioning system.
1515
# These numbers should be updated at most once just before the release,
1616
# and, optionally, at most once during the development (after the release).
17-
LIBGC_VER_INFO = 3:8:2
17+
LIBGC_VER_INFO = 3:9:2
1818
LIBGCCPP_VER_INFO = 3:1:2
1919

2020
## FIXME: `make distcheck' in this directory will not currently work.

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Boehm-Demers-Weiser Garbage Collector
22

3-
This is version 7.4.24 of a conservative garbage collector for C and C++.
3+
This is version 7.4.26 of a conservative garbage collector for C and C++.
44

55

66
## Download

configure.ac

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
dnl Process this file with autoconf to produce configure.
1515

1616
dnl Initialization.
17-
AC_INIT(gc,7.4.24,https://github.com/ivmai/bdwgc/issues)
17+
AC_INIT(gc,7.4.26,https://github.com/ivmai/bdwgc/issues)
1818
dnl Version must conform to: [0-9]+[.][0-9]+[.][0-9]+
1919

2020
AC_CONFIG_SRCDIR(gcj_mlc.c)

include/gc_version.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
/* it to keep the old-style build process working. */
3131
#define GC_TMP_VERSION_MAJOR 7
3232
#define GC_TMP_VERSION_MINOR 4
33-
#define GC_TMP_VERSION_MICRO 24 /* 7.4.24 */
33+
#define GC_TMP_VERSION_MICRO 26 /* 7.4.26 */
3434

3535
#ifdef GC_VERSION_MAJOR
3636
# if GC_TMP_VERSION_MAJOR != GC_VERSION_MAJOR \

0 commit comments

Comments
 (0)