Skip to content

Commit

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

* ChangeLog (7.4.16): Set release date.
* README.md: Bump micro version.
* configure.ac (AC_INIT): Likewise.
* include/gc_version.h (GC_TMP_VERSION_MICRO): Likewise.
  • Loading branch information
ivmai committed Dec 13, 2018
1 parent 7a817f8 commit 6258dcc
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion ChangeLog
@@ -1,5 +1,5 @@

== [7.4.16] (not released yet) ==
== [7.4.16] 2018-12-13 ==

* Fix 'collecting from unknown thread' abort in leak-finding mode for Win32
* Fix 'undefined reference to GC_incremental' linker error in pthread_start
Expand Down
2 changes: 1 addition & 1 deletion README.md
@@ -1,6 +1,6 @@
# Boehm-Demers-Weiser Garbage Collector

This is version 7.4.14 of a conservative garbage collector for C and C++.
This is version 7.4.16 of a conservative garbage collector for C and C++.


## Download
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,7.4.14,https://github.com/ivmai/bdwgc/issues)
AC_INIT(gc,7.4.16,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 include/gc_version.h
Expand Up @@ -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 14 /* 7.4.14 */
#define GC_TMP_VERSION_MICRO 16 /* 7.4.16 */

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

0 comments on commit 6258dcc

Please sign in to comment.