Skip to content

Commit f05b6bf

Browse files
committed
Get ready for release 1.1.1
1 parent e85c18a commit f05b6bf

File tree

5 files changed

+12
-5
lines changed

5 files changed

+12
-5
lines changed

CHANGES.rst

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,17 @@
11
CHANGES
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+
411
1.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

admin-tools/check-versions.sh

100644100755
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ if ! source ./pyenv-versions ; then
1212
exit $?
1313
fi
1414

15+
cd ..
1516
for version in $PYVERSIONS; do
1617
echo --- $version ---
1718
if ! pyenv local $version ; then

admin-tools/make-dist.sh

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,8 @@ if ! source ./pyenv-versions ; then
1414
exit $?
1515
fi
1616

17-
1817
cd ..
19-
source $PACKAGE/version.py
18+
source mathics_scanner/version.py
2019
echo $__version__
2120

2221
for pyversion in $PYVERSIONS; do

admin-tools/pyenv-versions

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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
77
fi
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'

mathics_scanner/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@
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

0 commit comments

Comments
 (0)