Skip to content

Commit 34a127a

Browse files
committed
Merge pull request #233 from sn6uv/mathics0.7
Mathics 0.7
2 parents fa703ab + 5b6da1c commit 34a127a

File tree

4 files changed

+36
-13
lines changed

4 files changed

+36
-13
lines changed

AUTHORS.txt

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,18 +5,20 @@ Mathics was originally created by:
55
Mathics is currently maintained by:
66

77
- Angus Griffith (sn6uv)
8+
- Ben Jones (bnjones)
89

910
Additional contributions were made by:
1011

12+
- Andrew Zhao (azhao12345)
1113
- Chong Jiang (cjiang)
1214
- Marek Šuppa (mrshu)
13-
- lanyjie
14-
- freshwater
15+
- Yingjie Lan (lanyjie)
16+
- Antonio Marquez-Raygoza (freshwater)
1517
- proxy-sander
16-
- Ben Jones (bnjones)
1718
- Bth8
19+
- Jim Radford (radford)
1820
- GitAnt
19-
- ogra
21+
- Toshiyuki Ogura (ogra)
2022

2123
Thanks to the authors of all projects that are used in Mathics:
2224
- Django

CHANGES.rst

Lines changed: 28 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,34 @@
11
CHANGES
22
=======
33

4+
0.7
5+
---
6+
7+
New features:
8+
9+
- Readline tab completion
10+
- automatic database initialisation
11+
- support for wildcards in ``Clear`` and ``ClearAll``
12+
- add ``Conjugate``
13+
- More tests and documentation for ``Sequence``
14+
- Context support
15+
16+
Bugs fixed:
17+
18+
- Fix unevalued index handling (issue #217)
19+
- Fix ``Solve`` treating one solution equal to 1 as a tautology (issue
20+
#208)
21+
- Fix temporary symbols appearing in the result when taking
22+
derivatives with respect to t (issue #184)
23+
- typo in save worksheet help text (issue #199)
24+
- Fix mathicsserver wildcard address binding
25+
- Fix ``Dot`` acting on matrices in MatrixForm (issue #145)
26+
- Fix Sum behaviour when using range to generate index values (issue #149)
27+
- Fix behaviour of plot with unevalated arguments (issue #150)
28+
- Fix zero-width space between factors in MathJax output (issue #45)
29+
- Fix ``{{2*a, 0},{0,0}}//MatrixForm`` crashing in the web interface
30+
(issue #182)
31+
432
0.6
533
---
634

@@ -31,13 +59,6 @@ New features:
3159
Bugs fixed:
3260

3361
- Fix divide-by-zero with zero-length plot range
34-
- Fix zero-width space between factors in MathJax output (issue #45)
35-
- Fix ``{{2*a, 0},{0,0}}//MatrixForm`` crashing in the web interface
36-
(issue #182)
37-
- Fix temporary symbols appearing in the result when taking
38-
derivatives with respect to t (issue #184)
39-
- Fix ``Solve`` treating one solution equal to 1 as a tautology (issue
40-
#208)
4162
- Fix mathicsserver exception on startup with Django 1.6 (issues #194,
4263
#205, #209)
4364

mathics/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# -*- coding: utf8 -*-
22

3-
__version__ = '0.6.0'
3+
__version__ = '0.7rc1'

test/test_console.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ def testLaunch(self):
1919
self.assertRegexpMatches(cons.readline(), '.*\r\n')
2020

2121
self.assertRegexpMatches(
22-
cons.readline(), 'Mathics \\d\\.\\d\\.\\d.*\r\n')
22+
cons.readline(), 'Mathics \\d\\.\\d.*\r\n')
2323
self.assertRegexpMatches(
2424
cons.readline(), 'on (CPython|PyPy) \\d.\\d.\\d \\(.+\\) ?\r\n')
2525
self.assertRegexpMatches(

0 commit comments

Comments
 (0)