Release Spot 1.2.1.
* NEWS, configure.ac, doc/org/tools.org: Bump version to 1.2.1.
This commit is contained in:
parent
f0bcab4add
commit
4d7638a269
3 changed files with 14 additions and 3 deletions
13
NEWS
13
NEWS
|
|
@ -1,12 +1,14 @@
|
||||||
New in spot 1.2a (not released)
|
New in spot 1.2.1 (2013-12-11)
|
||||||
|
|
||||||
* New features:
|
* New features:
|
||||||
|
|
||||||
- commands for translators specified to ltlcross can now
|
- commands for translators specified to ltlcross can now
|
||||||
be given "short names" to be used in the CSV or JSON output.
|
be given "short names" to be used in the CSV or JSON output.
|
||||||
For instance
|
For instance
|
||||||
ltlcross '{small} ltl2tgba -s --small %f >%N' ...
|
ltlcross '{small} ltl2tgba -s --small %f >%N' ...
|
||||||
will run the command "ltl2tgba -s --small %f >%N", but only
|
will run the command "ltl2tgba -s --small %f >%N", but only
|
||||||
print "small" in output files.
|
print "small" in output files.
|
||||||
|
|
||||||
- ltlcross' CSV and JSON output now contains two additional
|
- ltlcross' CSV and JSON output now contains two additional
|
||||||
columns: exit_status and exit_code, used to report failures of
|
columns: exit_status and exit_code, used to report failures of
|
||||||
the translator. If the translation failed, only the time is
|
the translator. If the translation failed, only the time is
|
||||||
|
|
@ -14,35 +16,44 @@ New in spot 1.2a (not released)
|
||||||
area left empty (in CVS) or null (in JSON). A new option,
|
area left empty (in CVS) or null (in JSON). A new option,
|
||||||
--omit-missing can be used to remove lines for failed
|
--omit-missing can be used to remove lines for failed
|
||||||
translations, and remove these two columns.
|
translations, and remove these two columns.
|
||||||
|
|
||||||
- if ltlcross is used with --products=+5 instead of --products=5
|
- if ltlcross is used with --products=+5 instead of --products=5
|
||||||
then the stastics for each of the five products will be output
|
then the stastics for each of the five products will be output
|
||||||
separately instead of being averaged.
|
separately instead of being averaged.
|
||||||
|
|
||||||
- if ltlcross is used with tools that produce deterministic Streett
|
- if ltlcross is used with tools that produce deterministic Streett
|
||||||
or Rabin automata (as specified with %D), then the statistics
|
or Rabin automata (as specified with %D), then the statistics
|
||||||
output in CSV or JSON will have some extra columns to report
|
output in CSV or JSON will have some extra columns to report
|
||||||
the size of these input automata before ltlcross converts them
|
the size of these input automata before ltlcross converts them
|
||||||
into TGBA to perform its regular checks.
|
into TGBA to perform its regular checks.
|
||||||
|
|
||||||
- ltlfilt, ltl2tgba, ltl2tgta, and ltlcross can now read formulas
|
- ltlfilt, ltl2tgba, ltl2tgta, and ltlcross can now read formulas
|
||||||
from CSV files. Use option -F FILE/COL to read formulas from
|
from CSV files. Use option -F FILE/COL to read formulas from
|
||||||
column COL of FILE. Use -F FILE/-COL if the first line of
|
column COL of FILE. Use -F FILE/-COL if the first line of
|
||||||
FILE be ignored.
|
FILE be ignored.
|
||||||
|
|
||||||
- when ltlfilt processes formulas from a CSV file, it will output
|
- when ltlfilt processes formulas from a CSV file, it will output
|
||||||
each CSV line whose formula matches the given constraints, with
|
each CSV line whose formula matches the given constraints, with
|
||||||
the rewriten formula. The new escape sequence %< (text in
|
the rewriten formula. The new escape sequence %< (text in
|
||||||
columns before the formula) and %> (text after) can be used
|
columns before the formula) and %> (text after) can be used
|
||||||
with the --format option to alter this output.
|
with the --format option to alter this output.
|
||||||
|
|
||||||
- ltlfile, genltl, randltl, and ltl2tgba have a --csv-escape option
|
- ltlfile, genltl, randltl, and ltl2tgba have a --csv-escape option
|
||||||
to help escape formulas in CSV files.
|
to help escape formulas in CSV files.
|
||||||
|
|
||||||
- Please check
|
- Please check
|
||||||
http://spot.lip6.fr/userdoc/csv.html
|
http://spot.lip6.fr/userdoc/csv.html
|
||||||
for some discussion and examples of the last few features.
|
for some discussion and examples of the last few features.
|
||||||
|
|
||||||
* Bug fixes:
|
* Bug fixes:
|
||||||
|
|
||||||
- ltlcross' CSV output has been changed to be more RFC 4180
|
- ltlcross' CSV output has been changed to be more RFC 4180
|
||||||
compliant: it no longuer output useless cosmetic spaces, and
|
compliant: it no longuer output useless cosmetic spaces, and
|
||||||
use double-quotes with proper escaping for strings. The only
|
use double-quotes with proper escaping for strings. The only
|
||||||
RFC 4180 rule that it does not follow is that it will terminate
|
RFC 4180 rule that it does not follow is that it will terminate
|
||||||
lines with \n instead of \r\n because the latter cause issues
|
lines with \n instead of \r\n because the latter cause issues
|
||||||
with a couple of tools.
|
with a couple of tools.
|
||||||
|
|
||||||
- ltlcross failed to report missing input or output escape sequences
|
- ltlcross failed to report missing input or output escape sequences
|
||||||
on all but the first configured translator.
|
on all but the first configured translator.
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -20,7 +20,7 @@
|
||||||
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
AC_PREREQ([2.61])
|
AC_PREREQ([2.61])
|
||||||
AC_INIT([spot], [1.2a], [spot@lrde.epita.fr])
|
AC_INIT([spot], [1.2.1], [spot@lrde.epita.fr])
|
||||||
AC_CONFIG_AUX_DIR([tools])
|
AC_CONFIG_AUX_DIR([tools])
|
||||||
AC_CONFIG_MACRO_DIR([m4])
|
AC_CONFIG_MACRO_DIR([m4])
|
||||||
AM_INIT_AUTOMAKE([1.11 gnu tar-ustar color-tests parallel-tests])
|
AM_INIT_AUTOMAKE([1.11 gnu tar-ustar color-tests parallel-tests])
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
#+TITLE: Command-line tools installed by Spot 1.2
|
#+TITLE: Command-line tools installed by Spot 1.2.1
|
||||||
#+EMAIL spot@lrde.epita.fr
|
#+EMAIL spot@lrde.epita.fr
|
||||||
#+OPTIONS: H:2 num:nil toc:t
|
#+OPTIONS: H:2 num:nil toc:t
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue