Skip to content

Commit

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

* ChangeLog (7.4.8): Set release date.
* Makefile.am (LIBGC_VER_INFO): Increment revision (change version
info of libgc.so to 3:2:1).
* 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 22, 2017
1 parent 76f3260 commit 1c1f286
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion ChangeLog
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

== [7.4.8] (not released yet) ==
== [7.4.8] 2017-12-22 ==

* Eliminate 'this statement may fall through' GCC warnings
* Eliminate 'value exceeds maximum object size' GCC warning in huge_test
Expand Down
2 changes: 1 addition & 1 deletion Makefile.am
Original file line number Diff line number Diff line change
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 = 3:1:1
LIBGC_VER_INFO = 3:2:1
LIBGCCPP_VER_INFO = 3:0:2

## FIXME: `make distcheck' in this directory will not currently work.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Boehm-Demers-Weiser Garbage Collector

This is version 7.4.6 of a conservative garbage collector for C and C++.
This is version 7.4.8 of a conservative garbage collector for C and C++.


## Download
Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
dnl Process this file with autoconf to produce configure.

# Initialization
AC_INIT(gc,7.4.6,https://github.com/ivmai/bdwgc/issues)
AC_INIT(gc,7.4.8,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])
Expand Down
2 changes: 1 addition & 1 deletion include/gc_version.h
Original file line number Diff line number Diff line change
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 6 /* 7.4.6 */
#define GC_TMP_VERSION_MICRO 8 /* 7.4.8 */

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

0 comments on commit 1c1f286

Please sign in to comment.