From 613c69fa5329f74e7581d2c3f3b20314f6c6d6a1 Mon Sep 17 00:00:00 2001 From: Ivan Maidanski Date: Thu, 26 Oct 2017 08:22:43 +0300 Subject: [PATCH] [7.4.6] Bump gc version to 7.4.6 * ChangeLog (7.4.6): Set release date. * Makefile.am (LIBGC_VER_INFO): Increment revision (change info to 3:1:1). * README.md: Bump micro version. * configure.ac (AC_INIT): Likewise. * include/gc_version.h (GC_TMP_VERSION_MICRO): Likewise. --- ChangeLog | 2 +- Makefile.am | 2 +- README.md | 2 +- configure.ac | 2 +- include/gc_version.h | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/ChangeLog b/ChangeLog index 0f3ffc15..bd7cdae0 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,5 @@ -== [7.4.6] (unset) == +== [7.4.6] 2017-10-26 == * Add configure --enable-gcov option (enable code coverage analysis) * Add configure check whether to define NO_GETCONTEXT diff --git a/Makefile.am b/Makefile.am index 8b7e9bba..2589d7a6 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 = 3:0:1 +LIBGC_VER_INFO = 3:1:1 LIBGCCPP_VER_INFO = 3:0:2 ## FIXME: `make distcheck' in this directory will not currently work. diff --git a/README.md b/README.md index 7b69e8b6..7e6b08b0 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Boehm-Demers-Weiser Garbage Collector -This is version 7.4.4 of a conservative garbage collector for C and C++. +This is version 7.4.6 of a conservative garbage collector for C and C++. ## Download diff --git a/configure.ac b/configure.ac index 4df80900..5bac2e22 100644 --- a/configure.ac +++ b/configure.ac @@ -12,7 +12,7 @@ dnl Process this file with autoconf to produce configure. # Initialization -AC_INIT(gc,7.4.4,https://github.com/ivmai/bdwgc/issues) +AC_INIT(gc,7.4.6,https://github.com/ivmai/bdwgc/issues) ## version must conform to [0-9]+[.][0-9]+[.][0-9]+ AC_CONFIG_SRCDIR(gcj_mlc.c) AC_CONFIG_MACRO_DIR([m4]) diff --git a/include/gc_version.h b/include/gc_version.h index 293c4de2..a6441fb4 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 4 -#define GC_TMP_VERSION_MICRO 4 /* 7.4.4 */ +#define GC_TMP_VERSION_MICRO 6 /* 7.4.6 */ #ifdef GC_VERSION_MAJOR # if GC_TMP_VERSION_MAJOR != GC_VERSION_MAJOR \ -- 2.40.0