Skip to content

Commit e74ee70

Browse files
committed
updated version to 4.0.2
1 parent 9fc635b commit e74ee70

20 files changed

+43
-25
lines changed

ChangeLog

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2020-02-28 Gregory L. Lee <[email protected]>
2+
* : tag version 4.0.2
3+
14
2018-12-26 Gregory L. Lee <[email protected]>
25
* STATview.py : Added ability to generate folded trace file for flamegraph
36

configure.ac

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,8 @@
22
# Process this file with autoconf to produce a configure script.
33

44
AC_PREREQ(2.59)
5-
#AC_INIT(STAT, 3.0.1, [email protected], The Stack Trace Analysis Tool, http://www.paradyn.org/STAT/STAT.html)
65
AC_COPYRIGHT([Copyright (c) 2007-2018, Lawrence Livermore National Security, LLC.])
7-
AC_INIT([STAT], [4.0.1])
6+
AC_INIT([STAT], [4.0.2])
87
AC_CONFIG_AUX_DIR([config])
98
AC_CONFIG_SRCDIR([configure.ac])
109
AC_CONFIG_HEADER([config.h])

doc/quickstart/stat_quickstart.pdf

0 Bytes
Binary file not shown.

doc/src/stat_changelog.sgml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
<section>
2+
<title>stat version 4.0.2</title>
3+
<para>
4+
<itemizedlist>
5+
<listitem><para>
6+
DynInst 10.X support
7+
</para></listitem>
8+
<listitem><para>
9+
Core file merging enhancements
10+
</para></listitem>
11+
<listitem><para>
12+
as always, numerous other bug fixes and minor enhancements (refer to ChangeLog file in top-level directory)
13+
</para></listitem>
14+
</itemizedlist>
15+
</para>
16+
</section>
117
<section>
218
<title>stat version 4.0.1</title>
319
<para>

doc/userguide/stat_userguide.pdf

522 Bytes
Binary file not shown.

scripts/DysectView.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
__author__ = ["Gregory Lee <[email protected]>", "Dorian Arnold", "Matthew LeGendre", "Dong Ahn", "Bronis de Supinski", "Barton Miller", "Martin Schulz", "Niklas Nielson", "Nicklas Bo Jensen", "Jesper Nielson"] "Jesper Puge Nielsen"]
2323
__version_major__ = 4
2424
__version_minor__ = 0
25-
__version_revision__ = 1
25+
__version_revision__ = 2
2626
__version__ = "%d.%d.%d" %(__version_major__, __version_minor__, __version_revision__)
2727

2828
import STATview

scripts/STATGUI.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
__author__ = ["Gregory Lee <[email protected]>", "Dorian Arnold", "Matthew LeGendre", "Dong Ahn", "Bronis de Supinski", "Barton Miller", "Martin Schulz", "Niklas Nielson", "Nicklas Bo Jensen", "Jesper Nielson"]
2323
__version_major__ = 4
2424
__version_minor__ = 0
25-
__version_revision__ = 1
25+
__version_revision__ = 2
2626
__version__ = "%d.%d.%d" %(__version_major__, __version_minor__, __version_revision__)
2727

2828
import STAThelper

scripts/STAThelper.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
__author__ = ["Gregory Lee <[email protected]>", "Dorian Arnold", "Matthew LeGendre", "Dong Ahn", "Bronis de Supinski", "Barton Miller", "Martin Schulz", "Niklas Nielson", "Nicklas Bo Jensen", "Jesper Nielson"]
2121
__version_major__ = 4
2222
__version_minor__ = 0
23-
__version_revision__ = 1
23+
__version_revision__ = 2
2424
__version__ = "%d.%d.%d" %(__version_major__, __version_minor__, __version_revision__)
2525

2626
import sys

scripts/STATmain.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
__author__ = ["Gregory Lee <[email protected]>", "Dorian Arnold", "Matthew LeGendre", "Dong Ahn", "Bronis de Supinski", "Barton Miller", "Martin Schulz", "Niklas Nielson", "Nicklas Bo Jensen", "Jesper Nielson"]
2323
__version_major__ = 4
2424
__version_minor__ = 0
25-
__version_revision__ = 1
25+
__version_revision__ = 2
2626
__version__ = "%d.%d.%d" % (__version_major__, __version_minor__, __version_revision__)
2727

2828
import sys
@@ -67,7 +67,7 @@ def STATmain_main(in_arg_list, command=None):
6767
args = None
6868
arg_parser = argparse.ArgumentParser(prog='STAT')
6969
subparsers = arg_parser.add_subparsers()
70-
70+
7171

7272
if sys.argv[1] in ['gui', 'view'] and import_exception is not None:
7373
raise import_exception

scripts/STATmerge.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
__author__ = ["Gregory Lee <[email protected]>", "Dorian Arnold", "Matthew LeGendre", "Dong Ahn", "Bronis de Supinski", "Barton Miller", "Martin Schulz", "Niklas Nielson", "Nicklas Bo Jensen", "Jesper Nielson"]
2121
__version_major__ = 4
2222
__version_minor__ = 0
23-
__version_revision__ = 1
23+
__version_revision__ = 2
2424
__version__ = "%d.%d.%d" %(__version_major__, __version_minor__, __version_revision__)
2525

2626
import _STATmerge

0 commit comments

Comments
 (0)