Skip to content

Commit

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

* CMakeLists.txt (PACKAGE_VERSION): Bump micro version (to 8.2.6).
* README.md: Likewise.
* configure.ac (AC_INIT): Likewise.
* doc/README.cmake (HOW TO IMPORT BDWGC): Likewise.
* include/gc_version.h (GC_TMP_VERSION_MICRO): Likewise.
* CMakeLists.txt (LIBCORD_VER_INFO): Increment revision (change version
info of libcord.so to 6:1:5).
* cord/cord.am (LIBCORD_VER_INFO): Likewise.
* CMakeLists.txt (LIBGC_VER_INFO): Increment revision (change version
info of libgc.so to 6:3:5).
* Makefile.am (LIBGC_VER_INFO): Likewise.
* ChangeLog (8.2.6): Set release date.
  • Loading branch information
ivmai committed Feb 4, 2024
1 parent a2ac586 commit e340b2e
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 10 deletions.
6 changes: 3 additions & 3 deletions CMakeLists.txt
Expand Up @@ -24,14 +24,14 @@

cmake_minimum_required(VERSION 3.5)

set(PACKAGE_VERSION 8.2.4)
set(PACKAGE_VERSION 8.2.6)
# 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 6:0:5)
set(LIBGC_VER_INFO 6:2:5)
set(LIBCORD_VER_INFO 6:1:5)
set(LIBGC_VER_INFO 6:3:5)
set(LIBGCCPP_VER_INFO 6:0:5)

option(enable_cplusplus "C++ support" OFF)
Expand Down
2 changes: 1 addition & 1 deletion ChangeLog
@@ -1,5 +1,5 @@

== [8.2.6] (not released yet) ==
== [8.2.6] 2024-02-04 ==

* Avoid unexpected heap growth in gctest for the case of VERY_SMALL_CONFIG
* Change gc.man to include gc/gc.h
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 = 6:2:5
LIBGC_VER_INFO = 6:3:5
LIBGCCPP_VER_INFO = 6:0:5

## 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 8.2.4 of a conservative garbage
This is version 8.2.6 of a conservative garbage
collector for C and C++.


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,8.2.4,https://github.com/ivmai/bdwgc/issues)
AC_INIT(gc,8.2.6,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 = 6:0:5
LIBCORD_VER_INFO = 6:1:5

lib_LTLIBRARIES += libcord.la

Expand Down
2 changes: 1 addition & 1 deletion doc/README.cmake
Expand Up @@ -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.4 REQUIRED)
find_package(BDWgc 8.2.6 REQUIRED)
add_executable(Foo foo.c)
target_link_libraries(Foo BDWgc::gc)

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 8
#define GC_TMP_VERSION_MINOR 2
#define GC_TMP_VERSION_MICRO 4 /* 8.2.4 */
#define GC_TMP_VERSION_MICRO 6 /* 8.2.6 */

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

0 comments on commit e340b2e

Please sign in to comment.