Skip to content

Commit

Permalink
Bump libgc version to 7.3alpha2
Browse files Browse the repository at this point in the history
* ChangeLog: Set release dates.
* README: Bump version.
* configure.ac: Likewise.
* include/gc_version.h (GC_TMP_ALPHA_VERSION): Likewise.
  • Loading branch information
ivmai committed May 11, 2012
1 parent d8bf7f9 commit 6cba390
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

== [7.3alpha2] (development) ==
== [7.3alpha2] 2012-05-11 ==

* Add 'const' qualifier to pointer argument of some API functions.
* Add GC_UNDERSCORE_STDCALL, UNICODE macro templates to configure (Win32).
Expand Down Expand Up @@ -91,7 +91,7 @@
* Use union of AO_t and word to favor strict-aliasing compiler optimization.


== [7.2] (candidate) ==
== [7.2] 2012-05-11 ==

* Abort in GC_thr_init on pthread_atfork failure (POSIX threads).
* Add GC_WIN32_PTHREADS target in configure.
Expand Down
2 changes: 1 addition & 1 deletion README
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ Public License, but is not needed by, nor linked into the collector library.
It is included here only because the atomic_ops distribution is, for
simplicity, included in its entirety.

This is version 7.3alpha1 of a conservative garbage collector for C and C++.
This is version 7.3alpha2 of a conservative garbage collector for C and C++.

You might find a more recent version of this at

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.3alpha1,[email protected])
AC_INIT(gc,7.3alpha2,[email protected])
## version must conform to [0-9]+[.][0-9]+(alpha[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 @@ -23,7 +23,7 @@
/* it to keep the old-style build process working. */
#define GC_TMP_VERSION_MAJOR 7
#define GC_TMP_VERSION_MINOR 3
#define GC_TMP_ALPHA_VERSION 1 /* 7.3alpha1 */
#define GC_TMP_ALPHA_VERSION 2 /* 7.3alpha2 */

#ifndef GC_NOT_ALPHA
# define GC_NOT_ALPHA 0xff
Expand Down

0 comments on commit 6cba390

Please sign in to comment.