From 008d7dd2e2bea923743fa11060a6644580514704 Mon Sep 17 00:00:00 2001 From: Nicolas Patry Date: Wed, 4 Oct 2023 16:40:39 +0200 Subject: [PATCH 1/2] Preparing a new release (0.4.0). - Moving to 0.4.1 for the dev mode already - Major upgrade just because the build system was revamped, not actual major or breaking changes. --- bindings/python/Cargo.toml | 2 +- safetensors/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bindings/python/Cargo.toml b/bindings/python/Cargo.toml index 22bd82c3..f1326e1f 100644 --- a/bindings/python/Cargo.toml +++ b/bindings/python/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "safetensors-python" -version = "0.3.4-dev.0" +version = "0.4.1-dev.0" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/safetensors/Cargo.toml b/safetensors/Cargo.toml index 879ef86e..dfcf234d 100644 --- a/safetensors/Cargo.toml +++ b/safetensors/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "safetensors" -version = "0.3.4-dev.0" +version = "0.4.1-dev.0" edition = "2021" homepage = "https://github.com/huggingface/safetensors" repository = "https://github.com/huggingface/safetensors" From 4737baf970d0583d35f428431481837cfac45d32 Mon Sep 17 00:00:00 2001 From: Nicolas Patry Date: Wed, 4 Oct 2023 16:44:18 +0200 Subject: [PATCH 2/2] Fix dep --- bindings/python/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bindings/python/Cargo.toml b/bindings/python/Cargo.toml index f1326e1f..417ec544 100644 --- a/bindings/python/Cargo.toml +++ b/bindings/python/Cargo.toml @@ -14,5 +14,5 @@ memmap2 = "0.5" serde_json = "1.0" [dependencies.safetensors] -version = "0.3.4-dev.0" +version = "0.4.1-dev.0" path = "../../safetensors"