Skip to content

Commit

Permalink
[7.4.20]
Browse files Browse the repository at this point in the history
Bump gc version to 7.4.20

* ChangeLog (7.4.20): Set release date.
* Makefile.am (LIBGC_VER_INFO): Increment revision (change version
info of libgc.so to 3:6:2).
* cord/cord.am (LIBCORD_VER_INFO): Increment revision (change version
info of libcord.so to 3:2:2).
* README.md: Bump micro version.
* configure.ac (AC_INIT): Likewise.
* include/gc_version.h (GC_TMP_VERSION_MICRO): Likewise.
  • Loading branch information
ivmai committed Sep 28, 2021
1 parent 98ac4aa commit 90a5995
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion ChangeLog
@@ -1,5 +1,5 @@

== [7.4.20] (not released yet) ==
== [7.4.20] 2021-09-28 ==

* Do not hold GC_fault_handler_lock when in Sleep (Windows)
* Eliminate 'static GC_sysinfo definition has incomplete type' Clang warning
Expand Down
2 changes: 1 addition & 1 deletion Makefile.am
Expand Up @@ -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:5:2
LIBGC_VER_INFO = 3:6:2
LIBGCCPP_VER_INFO = 3:1:2

## FIXME: `make distcheck' in this directory will not currently work.
Expand Down
2 changes: 1 addition & 1 deletion README.md
@@ -1,6 +1,6 @@
# Boehm-Demers-Weiser Garbage Collector

This is version 7.4.18 of a conservative garbage collector for C and C++.
This is version 7.4.20 of a conservative garbage collector for C and C++.


## Download
Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Expand Up @@ -14,7 +14,7 @@
dnl Process this file with autoconf to produce configure.

dnl Initialization.
AC_INIT(gc,7.4.18,https://github.com/ivmai/bdwgc/issues)
AC_INIT(gc,7.4.20,https://github.com/ivmai/bdwgc/issues)
dnl Version must conform to: [0-9]+[.][0-9]+[.][0-9]+

AC_CONFIG_SRCDIR(gcj_mlc.c)
Expand Down
2 changes: 1 addition & 1 deletion cord/cord.am
Expand Up @@ -3,7 +3,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).
LIBCORD_VER_INFO = 3:1:2
LIBCORD_VER_INFO = 3:2:2

lib_LTLIBRARIES += libcord.la

Expand Down
2 changes: 1 addition & 1 deletion include/gc_version.h
Expand Up @@ -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 18 /* 7.4.18 */
#define GC_TMP_VERSION_MICRO 20 /* 7.4.20 */

#ifdef GC_VERSION_MAJOR
# if GC_TMP_VERSION_MAJOR != GC_VERSION_MAJOR \
Expand Down

0 comments on commit 90a5995

Please sign in to comment.