Skip to content

Commit dde2bdf

Browse files
committed
bump version # and update readme
1 parent 1a44851 commit dde2bdf

File tree

3 files changed

+23
-6
lines changed

3 files changed

+23
-6
lines changed

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
[package]
88
name = "MathCatForPython"
9-
version = "0.7.2-rc.1"
9+
version = "0.7.2"
1010
authors = ["Neil Soiffer <soiffer@alum.mit.edu>"]
1111
edition = "2018"
1212
resolver = "2" # allows different build dependency features
@@ -21,7 +21,7 @@ name = "libmathcat_py"
2121
crate-type = ["cdylib"]
2222

2323
[dependencies.mathcat]
24-
version = "=0.7.2-rc.1"
24+
version = "=0.7.2"
2525
# for testing MathCAT without having to publish a new version (change two occurrences)
2626
# path = "../MathCAT/"
2727

@@ -31,7 +31,7 @@ features = ["extension-module", "abi3"]
3131

3232
[build-dependencies]
3333
zip = { version = "5.1", default-features = false, features = ["bzip2"] }
34-
mathcat = {version = "=0.7.2-rc.1", features = ["include-zip"]} # for building, we want the zip files so we can include them separately
34+
mathcat = {version = "=0.7.2", features = ["include-zip"]} # for building, we want the zip files so we can include them separately
3535
# mathcat = { path = "../MathCAT/", features = ["include-zip"]} # for building, we want the zip files so we can include them separately
3636
# for testing MathCAT without having to publish a new version (change two occurrences)
3737

buildVars.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ def _(arg):
3232
and other translations are in progress.""",
3333
),
3434
# version
35-
"addon_version": "v0.7.2-rc.1",
35+
"addon_version": "v0.7.2-rc.4",
3636
# Author(s)
3737
"addon_author": "Neil Soiffer <soiffer@alum.mit.edu>",
3838
# URL for the add-on documentation support

readme.md

Lines changed: 19 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,13 +32,30 @@ MathCAT's rules for speech are not yet as extensive as MathPlayer's rules althou
3232

3333
## MathCAT Update Log
3434

35-
### Version 0.7.1
35+
### Version 0.7.2
3636

3737
* Added German translation. There is still more work to do on this, but I'm told it is usable.
3838
* Added Norwegian translation
39+
* Improved reading of "neuter" units
3940
* Changed some character wording ("if and only if", "implies", "triangle")
4041
* Fix problems with the zip files and regional variants. This should allow en-gb and zh-tw to be available.
41-
* Fixed bugs in navigating in character mode. The bug fix is a bit of a design change. Character navigation mode has always meant to be a low level way of discovering all the symbols in the math, even if they are not spoken. Simple mode was described as being like character mode, but you need to explicitly zoom into any 2D structure such as a fraction or root. However, in the past, simple mode didn't always let you see all the characters and spoke using a semantic interpretation. This change makes simple mode be literal, just as character mode is literal. Enhanced mode continues to offer a semantic means of navigating an expression.
42+
* Fixed bugs in navigating in character mode and simple mode.
43+
* Changed the names of some characters to be more semantic (e.g., "long double left right arrow" is not "if and only if").
44+
* Add some "literal" (not semantic) names for characters for LiteralSpeak and navigation.
45+
* Fixed some bugs dealing with "intent"
46+
* Fix a bug with generating id's that could cause a crash once every 36^4 times
47+
* Add another heuristic to prevent something from being a potential function (when the potential function name appears within the argument)
48+
* Fixed reading of a degree symbol followed by "F" or "C".
49+
* Corrected the rule for what is allowed for "intent"
50+
* Improved the inference rules for units (supports "mi" if it is marked as "normal")
51+
* Fixed a navigation bug with log, ln, and lg
52+
* Improved error messages -- these should aid in reporting problems in speech and navigation
53+
* Improved speech for fractions that involve units ("meters *per* second")
54+
* Many improvements to the recognition of Chemistry
55+
* Fixed a Nemeth bug where a script end and baseline indicator were emitted when neither should have been present.
56+
* Added varepsilon character to UEB
57+
* Fixed off-by-one error when computing what to highlight in braille.
58+
* Add definitions for "ⅆ", "ⅇ", "ⅈ" to braille codes
4259

4360
### Version 0.6.10
4461

0 commit comments

Comments
 (0)