From 8b2a98209a59c92e1be318e4acda507d83175f4d Mon Sep 17 00:00:00 2001 From: Ivan Maidanski Date: Sun, 12 Aug 2018 00:33:27 +0300 Subject: [PATCH] [7.6.8] Bump gc version to 7.6.8 * ChangeLog (7.6.8): Set release date. * Makefile.am (LIBGC_VER_INFO): Increment revision (change version info of libgc.so to 4:4:3). * Makefile.am (LIBGCCPP_VER_INFO): Increment revision (change version info of libgccpp.so to 4:2:3). * README.md: Bump micro version. * configure.ac (AC_INIT): Likewise. * include/gc_version.h (GC_TMP_VERSION_MICRO): Likewise. * cord/cord.am (LIBCORD_VER_INFO): Increment revision (change version info of libcord.so to 4:1:3). --- ChangeLog | 2 +- Makefile.am | 4 ++-- README.md | 2 +- configure.ac | 2 +- cord/cord.am | 2 +- include/gc_version.h | 2 +- 6 files changed, 7 insertions(+), 7 deletions(-) diff --git a/ChangeLog b/ChangeLog index bf671e50..f6e799c6 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,5 @@ -== [7.6.8] (not released yet) == +== [7.6.8] 2018-08-12 == * Add cpu, make_as_lib, nothreads options to NT_MAKEFILE * Add NetBSD/aarch64 and initial RISC-V support diff --git a/Makefile.am b/Makefile.am index 0ba270b0..c487b0a3 100644 --- a/Makefile.am +++ b/Makefile.am @@ -14,8 +14,8 @@ # 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:3:3 -LIBGCCPP_VER_INFO = 4:1:3 +LIBGC_VER_INFO = 4:4:3 +LIBGCCPP_VER_INFO = 4:2:3 ## FIXME: `make distcheck' in this directory will not currently work. ## This is most likely to the explicit flags passed to submakes. diff --git a/README.md b/README.md index fb53d8bb..c8e51835 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Boehm-Demers-Weiser Garbage Collector -This is version 7.6.6 of a conservative garbage +This is version 7.6.8 of a conservative garbage collector for C and C++. diff --git a/configure.ac b/configure.ac index 18e8c745..9a2951e1 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.6,https://github.com/ivmai/bdwgc/issues) +AC_INIT(gc,7.6.8,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 b8794c29..05ffcff5 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 = 4:0:3 +LIBCORD_VER_INFO = 4:1:3 lib_LTLIBRARIES += libcord.la diff --git a/include/gc_version.h b/include/gc_version.h index 9c115344..e780ab54 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 6 /* 7.6.6 */ +#define GC_TMP_VERSION_MICRO 8 /* 7.6.8 */ #ifdef GC_VERSION_MAJOR # if GC_TMP_VERSION_MAJOR != GC_VERSION_MAJOR \ -- 2.40.0