Skip to content

Commit

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

* ChangeLog (8.0.8): Set release date.
* Makefile.am (LIBGC_VER_INFO): Increment revision (change version info
of libgc.so to 5:5:4).
* README.md: Bump micro version.
* configure.ac (AC_INIT): Likewise.
* cord/cord.am (LIBCORD_VER_INFO): Increment revision (change version
info of libcord.so to 5:1:4).
* include/gc_version.h (GC_TMP_VERSION_MICRO): Likewise.
  • Loading branch information
ivmai committed Aug 26, 2022
1 parent fc2b9b5 commit d310b0d
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion ChangeLog
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

== [8.0.8] (not released yet) ==
== [8.0.8] 2022-08-26 ==

* Avoid potential race in GC_init_real_syms after GC_allow_register_threads
* Define SUNOS5SIGS macro for kFreeBSD
Expand Down
2 changes: 1 addition & 1 deletion Makefile.am
Original file line number Diff line number Diff line change
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 = 5:4:4
LIBGC_VER_INFO = 5:5:4
LIBGCCPP_VER_INFO = 5:1:4

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

This is version 8.0.6 of a conservative garbage
This is version 8.0.8 of a conservative garbage
collector for C and C++.


Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
dnl Process this file with autoconf to produce configure.

dnl Initialization.
AC_INIT(gc,8.0.6,https://github.com/ivmai/bdwgc/issues)
AC_INIT(gc,8.0.8,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
Original file line number Diff line number Diff line change
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 = 5:0:4
LIBCORD_VER_INFO = 5:1:4

lib_LTLIBRARIES += libcord.la

Expand Down
2 changes: 1 addition & 1 deletion include/gc_version.h
Original file line number Diff line number Diff line change
Expand Up @@ -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 6 /* 8.0.6 */
#define GC_TMP_VERSION_MICRO 8 /* 8.0.8 */

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

0 comments on commit d310b0d

Please sign in to comment.