File tree Expand file tree Collapse file tree 5 files changed +12
-5
lines changed
Expand file tree Collapse file tree 5 files changed +12
-5
lines changed Original file line number Diff line number Diff line change 11CHANGES
22=======
33
4+ 1.1.1
5+ -----
6+
7+ * Finish adding operator names.
8+ * Generate ``IndentingNewline `` (``\n ``) properly in GNU Readline inputrc tables.
9+ * Adjust expectation on test since there can be duplicate function operators (for ``Apply `` and ``Function ``).
10+
4111.1.0
512-----
613
7- * Add operator-name, and ascii fields. See named-characters.yml for a description of these
14+ * Add operator-name, and ASCII fields. See named-characters.yml for a description of these
815* Add some whitespace characters like IndentingNewLine and RawReadLine
916* Improve testing
1017* Fix some small tagging based on testing
Original file line number Diff line number Diff line change @@ -12,6 +12,7 @@ if ! source ./pyenv-versions ; then
1212 exit $?
1313fi
1414
15+ cd ..
1516for version in $PYVERSIONS ; do
1617 echo --- $version ---
1718 if ! pyenv local $version ; then
Original file line number Diff line number Diff line change @@ -14,9 +14,8 @@ if ! source ./pyenv-versions ; then
1414 exit $?
1515fi
1616
17-
1817cd ..
19- source $PACKAGE /version.py
18+ source mathics_scanner /version.py
2019echo $__version__
2120
2221for pyversion in $PYVERSIONS ; do
Original file line number Diff line number Diff line change @@ -5,4 +5,4 @@ if [[ $0 == ${BASH_SOURCE[0]} ]] ; then
55 echo " This script should be *sourced* rather than run directly through bash"
66 exit 1
77fi
8- export PYVERSIONS=' 3.6.13 3.7.10 3.8.8 3.9.2 '
8+ export PYVERSIONS=' 3.6.13 3.7.10 3.8.9 3.9.3 '
Original file line number Diff line number Diff line change 44# This file is suitable for sourcing inside POSIX shell as
55# well as importing into Python. That's why there is no
66# space around "=" below.
7- __version__ = "1.1.1.dev0 " # noqa
7+ __version__ = "1.1.1" # noqa
You can’t perform that action at this time.
0 commit comments