Skip to content

Commit 8693f3b

Browse files
committed
Get ready for release 2.1.1
1 parent 9cd53aa commit 8693f3b

File tree

4 files changed

+37
-2
lines changed

4 files changed

+37
-2
lines changed

NEWS.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
2.1.1
2+
-----
3+
4+
Administrative changes but necessary to get this working properly:
5+
6+
* Bump min version of mathicsscanner. There was a bug in mathicsscanner that prevented
7+
the GNU Readline inputrc files from getting created properly.
8+
* Include settings.m in distribution. There was a typo in setup.py for location of this file.
9+
110
2.1.0
211
-----
312

admin-tools/check-versions.sh

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
#!/bin/bash
2+
function finish {
3+
cd $owd
4+
}
5+
6+
# FIXME put some of the below in a common routine
7+
owd=$(pwd)
8+
trap finish EXIT
9+
10+
cd $(dirname ${BASH_SOURCE[0]})
11+
if ! source ./pyenv-versions ; then
12+
exit $?
13+
fi
14+
15+
cd ..
16+
for version in $PYVERSIONS; do
17+
echo --- $version ---
18+
if ! pyenv local $version ; then
19+
exit $?
20+
fi
21+
make clean && pip install -e .
22+
if ! make check; then
23+
exit $?
24+
fi
25+
echo === $version ===
26+
done

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'

mathicsscript/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33
# This file is suitable for sourcing inside POSIX shell as
44
# well as importing into Python. That's why there is no
55
# space around "=" below.
6-
__version__="2.1.1.dev0" # noqa
6+
__version__="2.1.1" # noqa

0 commit comments

Comments
 (0)