Skip to content

Commit 7444310

Browse files
committed
bumped version to 4.2.2
1 parent c76507e commit 7444310

22 files changed

+31
-20
lines changed

INSTALL

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,7 @@ Dependent Packages
3737
Python module can optionally be installed to allow the STAT GUI
3838
to perform syntax highlighting of source code. Another GUI
3939
requirement is the Graphviz package to render the DOT format
40-
graph files. The Python module "pygdbmi" is required for using
41-
gdb-oneapi.
40+
graph files.
4241

4342
STAT can also be optionally built with the Fast Global File
4443
Status (FGFS) library. This library helps STAT identify when a

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
AC_PREREQ(2.59)
55
AC_COPYRIGHT([Copyright (c) 2007-2020, Lawrence Livermore National Security, LLC.])
6-
AC_INIT([STAT], [4.2.1])
6+
AC_INIT([STAT], [4.2.2])
77
AC_CONFIG_AUX_DIR([config])
88
AC_CONFIG_SRCDIR([configure.ac])
99
AC_CONFIG_HEADER([config.h])

doc/quickstart/stat_quickstart.pdf

3 KB
Binary file not shown.

doc/src/stat_changelog.sgml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
<section>
2+
<title>stat version 4.2.2</title>
3+
<para>
4+
<itemizedlist>
5+
<listitem><para>
6+
invoke python with -s to prevent user site-packages from interferring
7+
allow specification of GSETTINGS_SCHEMA_DIR for GUI
8+
</para></listitem>
9+
</itemizedlist>
10+
</para>
11+
</section>
12+
113
<section>
214
<title>stat version 4.2.1</title>
315
<para>

doc/userguide/stat_userguide.pdf

7.17 KB
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__ = 2
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__ = 2
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__ = 2
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: 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__ = 2
25-
__version_revision__ = 1
25+
__version_revision__ = 2
2626
__version__ = "%d.%d.%d" % (__version_major__, __version_minor__, __version_revision__)
2727

2828
import sys

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__ = 2
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)