summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CMakeLists.txt6
-rw-r--r--ChangeLog2
-rw-r--r--Makefile.am2
-rw-r--r--README.md2
-rw-r--r--configure.ac2
-rw-r--r--cord/cord.am2
-rw-r--r--doc/README.cmake2
-rw-r--r--include/gc_version.h2
8 files changed, 10 insertions, 10 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 2d47fecf..e1ea6dff 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -24,14 +24,14 @@
cmake_minimum_required(VERSION 3.1)
-set(PACKAGE_VERSION 8.2.0)
+set(PACKAGE_VERSION 8.2.2)
# Version must match that in AC_INIT of configure.ac and that in README.
# Version must conform to: [0-9]+[.][0-9]+[.][0-9]+
# Info (current:revision:age) for the Libtool versioning system.
# These values should match those in cord/cord.am and Makefile.am.
-set(LIBCORD_VER_INFO 5:0:4)
-set(LIBGC_VER_INFO 6:0:5)
+set(LIBCORD_VER_INFO 6:0:5)
+set(LIBGC_VER_INFO 6:1:5)
set(LIBGCCPP_VER_INFO 6:0:5)
option(enable_cplusplus "C++ support" OFF)
diff --git a/ChangeLog b/ChangeLog
index a53ec1e7..1607f950 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,5 @@
-== [8.2.2] (not released yet) ==
+== [8.2.2] 2022-08-26 ==
* Abort if no progress with thread suspend/resume signals resending
* Add CMake option to force libatomic_ops headers usage
diff --git a/Makefile.am b/Makefile.am
index 6c17c455..dabc8783 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 = 6:0:5
+LIBGC_VER_INFO = 6:1:5
LIBGCCPP_VER_INFO = 6:0:5
## FIXME: `make distcheck' in this directory will not currently work.
diff --git a/README.md b/README.md
index eb6f8d8d..e5a981b7 100644
--- a/README.md
+++ b/README.md
@@ -1,6 +1,6 @@
# Boehm-Demers-Weiser Garbage Collector
-This is version 8.2.0 (experimental) of a conservative garbage
+This is version 8.2.2 of a conservative garbage
collector for C and C++.
diff --git a/configure.ac b/configure.ac
index 079a5f72..2bc12824 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.2.0,https://github.com/ivmai/bdwgc/issues)
+AC_INIT(gc,8.2.2,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/cord/cord.am b/cord/cord.am
index 867cea6d..3deb4043 100644
--- a/cord/cord.am
+++ b/cord/cord.am
@@ -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 = 6:0:5
lib_LTLIBRARIES += libcord.la
diff --git a/doc/README.cmake b/doc/README.cmake
index 656e26f9..5180c912 100644
--- a/doc/README.cmake
+++ b/doc/README.cmake
@@ -55,7 +55,7 @@ HOW TO IMPORT BDWGC
Another project could add bdwgc as one of its dependencies with something like
this in their CMakeLists.txt:
-find_package(BDWgc 8.2.0 REQUIRED)
+find_package(BDWgc 8.2.2 REQUIRED)
add_executable(Foo foo.c)
target_link_libraries(Foo BDWgc::gc)
diff --git a/include/gc_version.h b/include/gc_version.h
index de7a565a..035938cd 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 2
-#define GC_TMP_VERSION_MICRO 0 /* 8.2.0 */
+#define GC_TMP_VERSION_MICRO 2 /* 8.2.2 */
#ifdef GC_VERSION_MAJOR
# if GC_TMP_VERSION_MAJOR != GC_VERSION_MAJOR \