From 3a8cba02fb16a45ad8fec183a285314cca7002bb Mon Sep 17 00:00:00 2001 From: rocky Date: Sun, 5 Mar 2023 03:52:49 -0500 Subject: [PATCH] Get ready for release 6.0.1 --- CHANGES.rst | 16 ++++++++++++++++ mathics/version.py | 2 +- 2 files changed, 17 insertions(+), 1 deletion(-) diff --git a/CHANGES.rst b/CHANGES.rst index 49702acb8..2a6c91477 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -3,6 +3,22 @@ CHANGES ======= +6.0.1 +----- + +Release to get Pillow 9.2 dependency added for Python 3.7+ + +Some Pattern-matching code gone over to add type annotations and to start +documenting its behavior and characteristics. Function +attributes are now stored at the time of Pattern-object creation +rather than evaluation. This better matches WMA behavior which pulls +out attribute this even earler than this. These changes speed up +doctest running time by about 7% under Pyston. + +Combinatorica version upgraded from 0.9 (circa 1992) to 0.91 (circa 1995) which closer matches the published book. + +Random builtin documentation gone over to conform to current documentation style. + 6.0.0 ----- diff --git a/mathics/version.py b/mathics/version.py index d783047ff..016c3d427 100644 --- a/mathics/version.py +++ b/mathics/version.py @@ -5,4 +5,4 @@ # well as importing into Python. That's why there is no # space around "=" below. # fmt: off -__version__="6.0.0" # noqa +__version__="6.0.1" # noqa