# HG changeset patch # User KUBOTA Yuji # Date 1499230903 -32400 # Node ID 39b7535558bc9126be67d15bea660c405f760866 # Parent 7e8c6ccee74dcd91edf4c3688c9fa8c7a7c588b2 Bump to 1.0.8 diff -r 7e8c6ccee74d -r 39b7535558bc agent/ChangeLog --- a/agent/ChangeLog Thu Jun 08 23:49:47 2017 +0900 +++ b/agent/ChangeLog Wed Jul 05 14:01:43 2017 +0900 @@ -1,3 +1,7 @@ +2017-07-05 KUBOTA Yuji + + * Bump to 1.0.8 + 2017-06-08 KUBOTA Yuji * Bug 3399: Fix potential error when conflict between class loading and GC diff -r 7e8c6ccee74d -r 39b7535558bc agent/NEWS --- a/agent/NEWS Thu Jun 08 23:49:47 2017 +0900 +++ b/agent/NEWS Wed Jul 05 14:01:43 2017 +0900 @@ -1,3 +1,9 @@ +New in release 1.0.8 (2017-07-05) + +- Improve a test framework for race-condition to prevent potential bugs + - Bug 3999: Fix potential error when conflict between class loading and GC +- Note: This version is in maintenance mode. Please use HeapStats 2.x for new features. + New in release 1.0.7 (2017-03-10) - Deadlock detection moved to experimental feature to prevent unexpected abort diff -r 7e8c6ccee74d -r 39b7535558bc agent/configure --- a/agent/configure Thu Jun 08 23:49:47 2017 +0900 +++ b/agent/configure Wed Jul 05 14:01:43 2017 +0900 @@ -1,6 +1,6 @@ #! /bin/sh # Guess values for system-dependent variables and create Makefiles. -# Generated by GNU Autoconf 2.69 for HeapStats 1.0.7. +# Generated by GNU Autoconf 2.69 for HeapStats 1.0.8. # # Report bugs to . # @@ -590,8 +590,8 @@ # Identity of this package. PACKAGE_NAME='HeapStats' PACKAGE_TARNAME='heapstats_agent' -PACKAGE_VERSION='1.0.7' -PACKAGE_STRING='HeapStats 1.0.7' +PACKAGE_VERSION='1.0.8' +PACKAGE_STRING='HeapStats 1.0.8' PACKAGE_BUGREPORT='heapstats@icedtea.classpath.org' PACKAGE_URL='' @@ -1345,7 +1345,7 @@ # Omit some internal or obsolete options to make the list less imposing. # This message is too long to be a string in the A/UX 3.1 sh. cat <<_ACEOF -\`configure' configures HeapStats 1.0.7 to adapt to many kinds of systems. +\`configure' configures HeapStats 1.0.8 to adapt to many kinds of systems. Usage: $0 [OPTION]... [VAR=VALUE]... @@ -1415,7 +1415,7 @@ if test -n "$ac_init_help"; then case $ac_init_help in - short | recursive ) echo "Configuration of HeapStats 1.0.7:";; + short | recursive ) echo "Configuration of HeapStats 1.0.8:";; esac cat <<\_ACEOF @@ -1540,7 +1540,7 @@ test -n "$ac_init_help" && exit $ac_status if $ac_init_version; then cat <<\_ACEOF -HeapStats configure 1.0.7 +HeapStats configure 1.0.8 generated by GNU Autoconf 2.69 Copyright (C) 2012 Free Software Foundation, Inc. @@ -2084,7 +2084,7 @@ This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. -It was created by HeapStats $as_me 1.0.7, which was +It was created by HeapStats $as_me 1.0.8, which was generated by GNU Autoconf 2.69. Invocation command line was $ $0 $@ @@ -2952,7 +2952,7 @@ # Define the identity of the package. PACKAGE='heapstats_agent' - VERSION='1.0.7' + VERSION='1.0.8' cat >>confdefs.h <<_ACEOF @@ -18996,7 +18996,7 @@ # report actual input values of CONFIG_FILES etc. instead of their # values after options handling. ac_log=" -This file was extended by HeapStats $as_me 1.0.7, which was +This file was extended by HeapStats $as_me 1.0.8, which was generated by GNU Autoconf 2.69. Invocation command line was CONFIG_FILES = $CONFIG_FILES @@ -19053,7 +19053,7 @@ cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`" ac_cs_version="\\ -HeapStats config.status 1.0.7 +HeapStats config.status 1.0.8 configured by $0, generated by GNU Autoconf 2.69, with options \\"\$ac_cs_config\\" diff -r 7e8c6ccee74d -r 39b7535558bc agent/configure.ac --- a/agent/configure.ac Thu Jun 08 23:49:47 2017 +0900 +++ b/agent/configure.ac Wed Jul 05 14:01:43 2017 +0900 @@ -2,7 +2,7 @@ # Process this file with autoconf to produce a configure script. AC_PREREQ(2.59) -AC_INIT([HeapStats],[1.0.7],[heapstats@icedtea.classpath.org],[heapstats_agent]) +AC_INIT([HeapStats],[1.0.8],[heapstats@icedtea.classpath.org],[heapstats_agent]) AC_CONFIG_SRCDIR([./src]) AC_CONFIG_AUX_DIR([./m4]) AC_CONFIG_MACRO_DIR([./m4]) diff -r 7e8c6ccee74d -r 39b7535558bc agent/specs/heapstats_agent.spec --- a/agent/specs/heapstats_agent.spec Thu Jun 08 23:49:47 2017 +0900 +++ b/agent/specs/heapstats_agent.spec Wed Jul 05 14:01:43 2017 +0900 @@ -42,7 +42,7 @@ Summary: A Java programming language debugging tool. Name: heapstats_agent -Version: 1.0.7 +Version: 1.0.8 Release: 0%{?target_processor:%{target_processor}}%{?dist:%{dist}}%{!?dist:.el5} License: GPLv2 Vendor: NTT OSS Center @@ -113,6 +113,11 @@ /usr/share/snmp/mibs/HeapStatsMibs.txt %changelog +* Wed Jul 05 2017 KUBOTA Yuji 1.0.8-0 +- Improve a test framework for race-condition to prevent potential bugs + - Bug 3999: Fix potential error when conflict between class loading and GC +- Note: This version is in maintenance mode. Please use HeapStats 2.x for new features. + * Fri Mar 10 2017 KUBOTA Yuji 1.0.7-0 - Deadlock detection moved to experimental feature to prevent unexpected abort - Bug 3285: JVM aborted on assert code at MonitorContended JVMTI event diff -r 7e8c6ccee74d -r 39b7535558bc analyzer/build.properties --- a/analyzer/build.properties Thu Jun 08 23:49:47 2017 +0900 +++ b/analyzer/build.properties Wed Jul 05 14:01:43 2017 +0900 @@ -1,5 +1,5 @@ #Variable -version=1.0.7 +version=1.0.8 source=1.6 target=1.6 diff -r 7e8c6ccee74d -r 39b7535558bc analyzer/src/jp/co/ntt/oss/heapstats/gui/GUIMain.java --- a/analyzer/src/jp/co/ntt/oss/heapstats/gui/GUIMain.java Thu Jun 08 23:49:47 2017 +0900 +++ b/analyzer/src/jp/co/ntt/oss/heapstats/gui/GUIMain.java Wed Jul 05 14:01:43 2017 +0900 @@ -584,7 +584,7 @@ } else if (eventSource.equals(aboutHeapStats)) { // Version Dialog StringBuilder buf = new StringBuilder(); - buf.append("\n\n Version: 1.0.7\n\n"); + buf.append("\n\n Version: 1.0.8\n\n"); buf.append("HeapStats is licensed under the GNU General Public License version 2.\n\n"); buf.append("about:license\n"); buf.append(" JFreeChart : the GNU Lesser General Public License\n\n");