Skip to content

Commit 3043c3f

Browse files
committed
updated version to 4.0.1
1 parent 1c8fcb2 commit 3043c3f

17 files changed

+31
-14
lines changed

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
AC_PREREQ(2.59)
55
#AC_INIT(STAT, 3.0.1, [email protected], The Stack Trace Analysis Tool, http://www.paradyn.org/STAT/STAT.html)
66
AC_COPYRIGHT([Copyright (c) 2007-2018, Lawrence Livermore National Security, LLC.])
7-
AC_INIT([STAT], [4.0.0])
7+
AC_INIT([STAT], [4.0.1])
88
AC_CONFIG_AUX_DIR([config])
99
AC_CONFIG_SRCDIR([configure.ac])
1010
AC_CONFIG_HEADER([config.h])

doc/quickstart/stat_quickstart.pdf

0 Bytes
Binary file not shown.

doc/src/stat_changelog.sgml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
<section>
2+
<title>stat version 4.0.1</title>
3+
<para>
4+
<itemizedlist>
5+
<listitem><para>
6+
Python 3 and xdot 0.9 support added
7+
</para></listitem>
8+
<listitem><para>
9+
as always, numerous other bug fixes and minor enhancements (refer to ChangeLog file in top-level directory)
10+
</para></listitem>
11+
</itemizedlist>
12+
</para>
13+
</section>
14+
115
<section>
216
<title>stat version 4.0.0</title>
317
<para>

doc/userguide/stat_userguide.pdf

919 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__ = 0
25+
__version_revision__ = 1
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__ = 0
25+
__version_revision__ = 1
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__ = 0
23+
__version_revision__ = 1
2424
__version__ = "%d.%d.%d" %(__version_major__, __version_minor__, __version_revision__)
2525

2626
import sys

scripts/STATmain.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__ = 0
25+
__version_revision__ = 1
2626
__version__ = "%d.%d.%d" % (__version_major__, __version_minor__, __version_revision__)
2727

2828
import sys

scripts/STATmerge.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,10 @@
1818
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL LAWRENCE LIVERMORE NATIONAL SECURITY, LLC, THE U.S. DEPARTMENT OF ENERGY OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
1919
"""
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"]
21-
__version__ = "3.0.1"
21+
__version_major__ = 4
22+
__version_minor__ = 0
23+
__version_revision__ = 1
24+
__version__ = "%d.%d.%d" %(__version_major__, __version_minor__, __version_revision__)
2225

2326
import _STATmerge
2427

scripts/STATview.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__ = 0
25+
__version_revision__ = 1
2626
__version__ = "%d.%d.%d" %(__version_major__, __version_minor__, __version_revision__)
2727

2828
import string

0 commit comments

Comments
 (0)