Skip to content

Commit cfcce88

Browse files
committed
bump version # and move to 0.7.0 of MathCAT
1 parent 9672336 commit cfcce88

File tree

2 files changed

+5
-6
lines changed

2 files changed

+5
-6
lines changed

Cargo.toml

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

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

2323
[dependencies.mathcat]
24-
version = "=0.6.10"
24+
version = "=0.7.0"
2525
# for testing MathCAT without having to publish a new version (change two occurrences)
2626
# path = "../MathCAT/"
27-
features = ["include-zip"] # for building, we want the zip files so we can include them separately
2827

2928
[dependencies.pyo3]
3029
version = "0.22"
3130
features = ["extension-module", "abi3"]
3231

3332
[build-dependencies]
3433
zip = { version = "4.1", default-features = false, features = ["bzip2"] }
35-
mathcat = {version = "=0.6.10", features = ["include-zip"]} # for building, we want the zip files so we can include them separately
34+
mathcat = {version = "=0.7.0", features = ["include-zip"]} # for building, we want the zip files so we can include them separately
3635
# mathcat = { path = "../MathCAT/", features = ["include-zip"]} # for building, we want the zip files so we can include them separately
3736
# for testing MathCAT without having to publish a new version (change two occurrences)
3837

buildVars.py

Lines changed: 2 additions & 2 deletions
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.10",
35+
"addon_version": "0.7.0",
3636
# Author(s)
3737
"addon_author": "Neil Soiffer <soiffer@alum.mit.edu>",
3838
# URL for the add-on documentation support
@@ -42,7 +42,7 @@ def _(arg):
4242
# Documentation file name
4343
"addon_docFileName": "readme.html",
4444
# Minimum NVDA version supported (e.g. "2018.3.0", minor version is optional)
45-
"addon_minimumNVDAVersion": "2024.1",
45+
"addon_minimumNVDAVersion": "2025.1",
4646
# Last NVDA version supported/tested (e.g. "2018.4.0", ideally more recent than minimum version)
4747
"addon_lastTestedNVDAVersion": "2025.1",
4848
# Add-on update channel (default is None, denoting stable releases,

0 commit comments

Comments
 (0)