diff --git a/ChangeLog b/ChangeLog index 1f906e6fc..6c79c1b24 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,5 @@ -== [7.6.22] (not released yet) == +== [7.6.22] 2024-09-07 == * Eliminate 'cast signed to bigger unsigned' CSA warnings in GC_find_limit * Fix GC_debug_realloc to support custom kind diff --git a/Makefile.am b/Makefile.am index eed87d308..fe8927e44 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 = 4:10:3 +LIBGC_VER_INFO = 4:11:3 LIBGCCPP_VER_INFO = 4:2:3 ## FIXME: `make distcheck' in this directory will not currently work. diff --git a/README.md b/README.md index f1f1e18e1..b038264af 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Boehm-Demers-Weiser Garbage Collector -This is version 7.6.20 of a conservative garbage +This is version 7.6.22 of a conservative garbage collector for C and C++. diff --git a/configure.ac b/configure.ac index 04e786335..56c134bba 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.6.20,https://github.com/ivmai/bdwgc/issues) +AC_INIT(gc,7.6.22,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 c4bec04e7..827bfdb47 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 6 -#define GC_TMP_VERSION_MICRO 20 /* 7.6.20 */ +#define GC_TMP_VERSION_MICRO 22 /* 7.6.22 */ #ifdef GC_VERSION_MAJOR # if GC_TMP_VERSION_MAJOR != GC_VERSION_MAJOR \