diff --git a/ChangeLog b/ChangeLog index 50fac89ec..3f8af5d81 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,5 @@ -== [8.0.12] (not released yet) == +== [8.0.12] 2024-02-04 == * Eliminate 'make_key is defined but unused' gcc warning in threadkeytest * Ensure _GNU_SOURCE is defined if HAVE_DLADDR is defined by configure diff --git a/Makefile.am b/Makefile.am index f8a2d4358..6af5d4be8 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:6:4 +LIBGC_VER_INFO = 5:7: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 0fb20769a..d4b309a09 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Boehm-Demers-Weiser Garbage Collector -This is version 8.0.10 of a conservative garbage +This is version 8.0.12 of a conservative garbage collector for C and C++. diff --git a/configure.ac b/configure.ac index cfdc210bf..bbe3cb27b 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.10,https://github.com/ivmai/bdwgc/issues) +AC_INIT(gc,8.0.12,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 ac94f7b50..8b283967a 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 10 /* 8.0.10 */ +#define GC_TMP_VERSION_MICRO 12 /* 8.0.12 */ #ifdef GC_VERSION_MAJOR # if GC_TMP_VERSION_MAJOR != GC_VERSION_MAJOR \