From fa8531bab17db4613f472cbd8ce3fa7547c3afc9 Mon Sep 17 00:00:00 2001 From: laurent Date: Tue, 15 Oct 2024 10:42:00 +0200 Subject: [PATCH] Bump the minor crate version. --- Cargo.toml | 4 ++-- examples/python-extension/Cargo.toml | 6 +++--- pyo3-tch/Cargo.toml | 8 ++++---- torch-sys/Cargo.toml | 2 +- 4 files changed, 10 insertions(+), 10 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index c1513dba..2e602e27 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tch" -version = "0.16.0" +version = "0.16.1" authors = ["Laurent Mazare "] edition = "2021" build = "build.rs" @@ -22,7 +22,7 @@ libc = "0.2.0" ndarray = "0.15" rand = "0.8" thiserror = "1" -torch-sys = { version = "0.16.0", path = "torch-sys" } +torch-sys = { version = "0.16.1", path = "torch-sys" } zip = "0.6" half = "2" safetensors = "0.3.0" diff --git a/examples/python-extension/Cargo.toml b/examples/python-extension/Cargo.toml index a312e10c..36ff4138 100644 --- a/examples/python-extension/Cargo.toml +++ b/examples/python-extension/Cargo.toml @@ -18,6 +18,6 @@ crate-type = ["cdylib"] [dependencies] pyo3 = { version = "0.21", features = ["extension-module"] } -pyo3-tch = { path = "../../pyo3-tch", version = "0.16.0" } -tch = { path = "../..", features = ["python-extension"], version = "0.16.0" } -torch-sys = { path = "../../torch-sys", features = ["python-extension"], version = "0.16.0" } \ No newline at end of file +pyo3-tch = { path = "../../pyo3-tch", version = "0.16.1" } +tch = { path = "../..", features = ["python-extension"], version = "0.16.1" } +torch-sys = { path = "../../torch-sys", features = ["python-extension"], version = "0.16.1" } diff --git a/pyo3-tch/Cargo.toml b/pyo3-tch/Cargo.toml index d833aff6..7608ec90 100644 --- a/pyo3-tch/Cargo.toml +++ b/pyo3-tch/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pyo3-tch" -version = "0.16.0" +version = "0.16.1" authors = ["Laurent Mazare "] edition = "2021" build = "build.rs" @@ -12,6 +12,6 @@ categories = ["science"] license = "MIT/Apache-2.0" [dependencies] -tch = { path = "..", features = ["python-extension"], version = "0.16.0" } -torch-sys = { path = "../torch-sys", features = ["python-extension"], version = "0.16.0" } -pyo3 = { version = "0.21", features = ["extension-module"] } \ No newline at end of file +tch = { path = "..", features = ["python-extension"], version = "0.16.1" } +torch-sys = { path = "../torch-sys", features = ["python-extension"], version = "0.16.1" } +pyo3 = { version = "0.21", features = ["extension-module"] } diff --git a/torch-sys/Cargo.toml b/torch-sys/Cargo.toml index b23bf0e9..444f6d15 100644 --- a/torch-sys/Cargo.toml +++ b/torch-sys/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "torch-sys" -version = "0.16.0" +version = "0.16.1" authors = ["Laurent Mazare "] edition = "2021" build = "build.rs"