Skip to content

Commit a02e6bb

Browse files
committed
bump version number
1 parent 23fdd06 commit a02e6bb

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
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.6.2"
9+
version = "0.6.3"
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.6.2"
24+
version = "0.6.3"
2525
# for testing MathCAT without having to publish a new version (change two occurences)
2626
# path = "../MathCAT/"
2727
# features = ["include-zip"] # for building, we want the zip files so we can include them separately
@@ -32,7 +32,7 @@ features = ["extension-module", "abi3"]
3232

3333
[build-dependencies]
3434
zip = { version = "2.1", default-features = false, features = ["bzip2"] }
35-
mathcat = { version = "0.6.2", features = ["include-zip"]} # for building, we want the zip files so we can include them separately
35+
mathcat = { version = "0.6.3", features = ["include-zip"]} # for building, we want the zip files so we can include them separately
3636
# mathcat = { path = "../MathCAT/", features = ["include-zip"]} # for building, we want the zip files so we can include them separately
3737
# for testing MathCAT without having to publish a new version (change two occurences)
3838

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ MathCAT's rules for speech are not yet as extensive as MathPlayer's rules -- tha
3030

3131
## MathCAT Update Log
3232

33-
### Version 0.6.2
33+
### Version 0.6.3
3434
* All the language and braille Rule files are zipped up per directory and unzipped on demand.
3535
* This currently saves ~5mb when Rules.zip is unzipped, and will save even more as more languages and braille codes are added.
3636
* This is in preparation for MathCAT being built into NVDA 2024.3
@@ -45,6 +45,7 @@ MathCAT's rules for speech are not yet as extensive as MathPlayer's rules -- tha
4545
* Fixed some bugs in the MathML cleanup for "," decimal separators.
4646
* Found a bug in braille highlighting when nothing is highlighted (maybe never happens which is why I didn't see it in practice?)
4747
* Fixed "Describe" mode so that it works -- it is still very minimal and probably not useful yet
48+
* Fixed minimum supported version
4849

4950
### Version 0.5.6
5051
* Added Copy As... to the MathCAT dialog (in the "Navagation" pane).

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": "0.6.2",
35+
"addon_version": "0.6.3",
3636
# Author(s)
3737
"addon_author": "Neil Soiffer <soiffer@alum.mit.edu>",
3838
# URL for the add-on documentation support

0 commit comments

Comments
 (0)