Skip to content

Commit

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

* ChangeLog: Set release date.
* README.md: Bump minor version.
* configure.ac (AC_INIT): Likewise.
* include/gc_version.h (GC_TMP_VERSION_MINOR): Likewise.
  • Loading branch information
ivmai committed Aug 2, 2016
1 parent 9115ba9 commit 8ac1d84
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion ChangeLog
@@ -1,5 +1,5 @@

== [7.5.0] (development) ==
== [7.6.0] 2016-08-02 ==

* ABORT_ARGn log details at INFO level (Android).
* Add 'pragma message' to gc.h to detect inconsistent WIN64/_WIN64 (MS VC).
Expand Down
2 changes: 1 addition & 1 deletion README.md
@@ -1,6 +1,6 @@
# Boehm-Demers-Weiser Garbage Collector

This is version 7.5.0 (next release development) of a conservative garbage
This is version 7.6.0 of a conservative garbage
collector for C and C++.

You might find a more recent version
Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Expand Up @@ -12,7 +12,7 @@
dnl Process this file with autoconf to produce configure.

# Initialization
AC_INIT(gc,7.5.0,bdwgc@lists.opendylan.org)
AC_INIT(gc,7.6.0,bdwgc@lists.opendylan.org)
## version must conform to [0-9]+[.][0-9]+[.][0-9]+
AC_CONFIG_SRCDIR(gcj_mlc.c)
AC_CONFIG_MACRO_DIR([m4])
Expand Down
4 changes: 2 additions & 2 deletions include/gc_version.h
Expand Up @@ -29,8 +29,8 @@
/* Eventually this one may become unnecessary. For now we need */
/* it to keep the old-style build process working. */
#define GC_TMP_VERSION_MAJOR 7
#define GC_TMP_VERSION_MINOR 5
#define GC_TMP_VERSION_MICRO 0 /* 7.5.0 */
#define GC_TMP_VERSION_MINOR 6
#define GC_TMP_VERSION_MICRO 0 /* 7.6.0 */

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

0 comments on commit 8ac1d84

Please sign in to comment.