From 4ebbefdccc2141abd0e0f70ea886353d529fb818 Mon Sep 17 00:00:00 2001 From: NSoiffer Date: Sun, 16 Jun 2024 20:27:31 +0100 Subject: [PATCH] update version --- Cargo.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 8b0b785..fe54e78 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mathcat_c" -version = "0.6.1" +version = "0.6.2" authors = ["Neil Soiffer "] edition = "2021" license = "MIT" @@ -8,7 +8,7 @@ description = "C/C++ interface for MathCAT (for MathCAT info, see crates.io or n resolver = "2" # allows different build dependency features [dependencies.mathcat] -version = "0.6.1" +version = "0.6.2" # for testing MathCAT without having to publish a new version (change two occurences) # path = "../MathCAT/" # features = ["include-zip"] # for building, we want the zip files so we can include them separately @@ -21,7 +21,7 @@ crate-type = ["cdylib"] # Creates dynamic lib [build-dependencies] zip = { version = "2.1", default-features = false, features = ["bzip2"] } cbindgen = "0.24" -mathcat = { version = "0.6.1", features = ["include-zip"]} # for building, we want the zip files so we can include them separately +mathcat = { version = "0.6.2", features = ["include-zip"]} # for building, we want the zip files so we can include them separately # for testing MathCAT without having to publish a new version (change two occurences) # mathcat = {path = "../MathCAT/", features = ["include-zip"]}