Skip to content

Commit 189baee

Browse files
committed
Get ready for release 2.1.0
1 parent 3cec04a commit 189baee

File tree

5 files changed

+13
-4
lines changed

5 files changed

+13
-4
lines changed

NEWS.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,15 @@
1+
2.1.0
2+
-----
3+
4+
* Allow command-line flag `-c` as an alias for `--execute` (along with `-e` to be compatible with wolframscript
5+
* Better compliance on Windows which are GNU readline-starved
6+
* Better unicode detection
7+
* Accept newer mathics-scanner and Mathics3 versions
8+
19
2.0.1
210
-----
311

4-
Fix `mathicsscript -f FILE` argument. See PR #26
12+
* Fix `mathicsscript -f FILE` argument. See PR #26
513

614
2.0.0
715
-----

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.12 3.7.9 3.8.7 3.9.1'
8+
export PYVERSIONS='3.6.13 3.7.10 3.8.8 3.9.2'

mathicsscript/__main__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -157,6 +157,7 @@ def out(self, out):
157157
help="directory to load extensions in Python",
158158
)
159159
@click.option(
160+
"-c",
160161
"-e",
161162
"--execute",
162163
help="evaluate EXPR before processing any input files (may be given "

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.0.2.dev0" # noqa
6+
__version__="2.1.0" # noqa

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ def read(*rnames):
6666
package_data={"": ["inputrc-no-unicode", "inputrc-unicode", "settings/settings.m"]},
6767
install_requires=[
6868
"Mathics_Scanner>=1.0.0,<1.2.0",
69-
"Mathics3 >= 2.0.0,<2.1.0",
69+
"Mathics3 >= 2.0.0,<2.2.0",
7070
"click",
7171
"colorama",
7272
"columnize",

0 commit comments

Comments
 (0)