Skip to content

Commit

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

* Makefile.am (LIBGC_VER_INFO): Increment revision (change version info
of libgc.so to 4:2:3, change version info of libgccpp.so to 4:1:3).
* README.md: Bump micro version.
* configure.ac (AC_INIT): Likewise.
* include/gc_version.h (GC_TMP_VERSION_MICRO): Likewise.
  • Loading branch information
ivmai committed Jan 26, 2018
1 parent 62d9d03 commit 4d1a516
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions Makefile.am
Expand Up @@ -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:1:3
LIBGCCPP_VER_INFO = 4:0:3
LIBGC_VER_INFO = 4:2:3
LIBGCCPP_VER_INFO = 4:1:3

## FIXME: `make distcheck' in this directory will not currently work.
## This is most likely to the explicit flags passed to submakes.
Expand Down
2 changes: 1 addition & 1 deletion README.md
@@ -1,6 +1,6 @@
# Boehm-Demers-Weiser Garbage Collector

This is version 7.6.2 of a conservative garbage
This is version 7.6.4 of a conservative garbage
collector for C and C++.


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.6.2,https://github.com/ivmai/bdwgc/issues)
AC_INIT(gc,7.6.4,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
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 6
#define GC_TMP_VERSION_MICRO 2 /* 7.6.2 */
#define GC_TMP_VERSION_MICRO 4 /* 7.6.4 */

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

0 comments on commit 4d1a516

Please sign in to comment.