From fad8bc7d0cc8c034083777a9e2acae74e27ddbfd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicol=C3=A1s=20Hatcher=20Andr=C3=A9s?= Date: Sun, 19 Oct 2025 18:32:07 +0200 Subject: [PATCH] UPDATE: Update release to 0.6.0 (#463) Should we have a single version number at the root? --- Cargo.lock | 10 +++++----- base/Cargo.toml | 2 +- bindings/nodejs/Cargo.toml | 4 ++-- bindings/python/Cargo.toml | 4 ++-- bindings/python/pyproject.toml | 2 +- bindings/wasm/Cargo.toml | 4 ++-- xlsx/Cargo.toml | 4 ++-- 7 files changed, 15 insertions(+), 15 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 2c0d72d..df09935 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -414,7 +414,7 @@ dependencies = [ [[package]] name = "ironcalc" -version = "0.5.0" +version = "0.6.0" dependencies = [ "bitcode", "chrono", @@ -430,7 +430,7 @@ dependencies = [ [[package]] name = "ironcalc_base" -version = "0.5.0" +version = "0.6.0" dependencies = [ "bitcode", "chrono", @@ -447,7 +447,7 @@ dependencies = [ [[package]] name = "ironcalc_nodejs" -version = "0.5.0" +version = "0.6.0" dependencies = [ "ironcalc", "napi", @@ -782,7 +782,7 @@ dependencies = [ [[package]] name = "pyroncalc" -version = "0.5.7" +version = "0.6.0" dependencies = [ "bitcode", "ironcalc", @@ -1075,7 +1075,7 @@ checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" [[package]] name = "wasm" -version = "0.5.0" +version = "0.6.0" dependencies = [ "ironcalc_base", "serde", diff --git a/base/Cargo.toml b/base/Cargo.toml index cb97b34..7befc11 100644 --- a/base/Cargo.toml +++ b/base/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ironcalc_base" -version = "0.5.0" +version = "0.6.0" authors = ["Nicolás Hatcher "] edition = "2021" homepage = "https://www.ironcalc.com" diff --git a/bindings/nodejs/Cargo.toml b/bindings/nodejs/Cargo.toml index 2ad3b7c..54ba347 100644 --- a/bindings/nodejs/Cargo.toml +++ b/bindings/nodejs/Cargo.toml @@ -1,7 +1,7 @@ [package] edition = "2021" name = "ironcalc_nodejs" -version = "0.5.0" +version = "0.6.0" [lib] crate-type = ["cdylib"] @@ -10,7 +10,7 @@ crate-type = ["cdylib"] # Default enable napi4 feature, see https://nodejs.org/api/n-api.html#node-api-version-matrix napi = { version = "2.12.2", default-features = false, features = ["napi4", "serde-json"] } napi-derive = "2.12.2" -ironcalc = { path = "../../xlsx", version = "0.5.0" } +ironcalc = { path = "../../xlsx", version = "0.6.0" } serde = { version = "1.0", features = ["derive"] } [build-dependencies] diff --git a/bindings/python/Cargo.toml b/bindings/python/Cargo.toml index e97dee2..65cff01 100644 --- a/bindings/python/Cargo.toml +++ b/bindings/python/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pyroncalc" -version = "0.5.7" +version = "0.6.0" edition = "2021" @@ -12,7 +12,7 @@ crate-type = ["cdylib"] [dependencies] serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" -xlsx = { package= "ironcalc", path = "../../xlsx", version = "0.5.0" } +xlsx = { package= "ironcalc", path = "../../xlsx", version = "0.6.0" } pyo3 = { version = "0.25", features = ["extension-module"] } bitcode = "0.6.3" diff --git a/bindings/python/pyproject.toml b/bindings/python/pyproject.toml index 209bda9..bdbd954 100644 --- a/bindings/python/pyproject.toml +++ b/bindings/python/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "ironcalc" -version = "0.5.7" +version = "0.6.0" description = "Create, edit and evaluate Excel spreadsheets" requires-python = ">=3.10" keywords = [ diff --git a/bindings/wasm/Cargo.toml b/bindings/wasm/Cargo.toml index 30455a4..6f48721 100644 --- a/bindings/wasm/Cargo.toml +++ b/bindings/wasm/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wasm" -version = "0.5.0" +version = "0.6.0" authors = ["Nicolas Hatcher "] description = "IronCalc Web bindings" license = "MIT/Apache-2.0" @@ -14,7 +14,7 @@ crate-type = ["cdylib"] # Uses `../ironcalc/base` when used locally, and uses # the inicated version from crates.io when published. # https://doc.rust-lang.org/cargo/reference/specifying-dependencies.html#multiple-locations -ironcalc_base = { path = "../../base", version = "0.5", features = ["use_regex_lite"] } +ironcalc_base = { path = "../../base", version = "0.6", features = ["use_regex_lite"] } serde = { version = "1.0", features = ["derive"] } wasm-bindgen = "0.2.100" serde-wasm-bindgen = "0.4" diff --git a/xlsx/Cargo.toml b/xlsx/Cargo.toml index 713d3bb..9a2bbdf 100644 --- a/xlsx/Cargo.toml +++ b/xlsx/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ironcalc" -version = "0.5.0" +version = "0.6.0" authors = ["Nicolás Hatcher "] edition = "2021" homepage = "https://www.ironcalc.com" @@ -20,7 +20,7 @@ thiserror = "1.0" # Uses `../base` when used locally, and uses # the inicated version from crates.io when published. # https://doc.rust-lang.org/cargo/reference/specifying-dependencies.html#multiple-locations -ironcalc_base = { path = "../base", version = "0.5" } +ironcalc_base = { path = "../base", version = "0.6" } itertools = "0.12" chrono = "0.4" bitcode = "0.6.0"