diff options
author | Ivan Maidanski <ivmai@mail.ru> | 2013-11-17 13:40:36 +0400 |
---|---|---|
committer | Ivan Maidanski <ivmai@mail.ru> | 2013-11-17 20:05:25 +0400 |
commit | 4c4054f156d264a2c657b7fee24c85e0142f9091 (patch) | |
tree | c2bb7f876da3a554796b2c06068b547228109afa /configure.ac | |
parent | 6d09ad11189adb9edf87b02094590ad6b6f0db29 (diff) | |
download | bdwgc-4c4054f156d264a2c657b7fee24c85e0142f9091.tar.gz |
Bump version to 7.4.0; change policy regarding version numbersgc7_4_0
* ChangeLog: Update.
* README.md: Bump version.
* configure.ac (AC_INIT): Likewise.
* include/gc_version.h (GC_TMP_VERSION_MINOR): Likewise.
* alloc.c (GC_version, GC_get_version): Replace GC_TMP_ALPHA_VERSION
with GC_VERSION_MICRO.
* doc/debugging.html: Remove comment about "alpha" versions.
* doc/overview.html: Likewise.
* include/gc.h (GC_get_version): Update comment.
* include/gc_version.h (GC_NOT_ALPHA): Remove.
* include/gc_version.h (GC_TMP_ALPHA_VERSION): Replace with
GC_TMP_VERSION_MICRO; add comment about policy.
* m4/gc_set_version.m4 (GC_ALPHA_VERSION): Replace with
GC_VERSION_MICRO; update comments; adjust version format test.
* tests/test.c (GC_ALPHA_VERSION): Remove.
* tools/add_gc_prefix.c (GC_ALPHA_VERSION): Likewise.
* tools/gcname.c (GC_ALPHA_VERSION): Likewise.
* tests/test.c (CHECH_GCLIB_VERSION): Replace GC_ALPHA_VERSION with
GC_VERSION_MICRO.
* tools/add_gc_prefix.c (main): Replace "gc%d.%d[alpha%d]" print
format with "gc-%d.%d.%d" one.
* tools/gcname.c (main): Likewise.
* windows-untested/gc.ver (_BETA, GC_VERSION_MICRO): Remove.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index 031b129f..2e9afca0 100644 --- a/configure.ac +++ b/configure.ac @@ -12,8 +12,8 @@ dnl Process this file with autoconf to produce configure. # Initialization -AC_INIT(gc,7.3alpha3,gc@linux.hpl.hp.com) - ## version must conform to [0-9]+[.][0-9]+(alpha[0-9]+)? +AC_INIT(gc,7.4.0,gc@linux.hpl.hp.com) + ## version must conform to [0-9]+[.][0-9]+[.][0-9]+ AC_CONFIG_SRCDIR(gcj_mlc.c) AC_CONFIG_MACRO_DIR([m4]) AC_CANONICAL_TARGET |