From c85e86918ec2c42c50a9a9fb38be31d859caa8c0 Mon Sep 17 00:00:00 2001 From: nathaniel Date: Fri, 19 Jul 2024 10:17:01 -0400 Subject: [PATCH] Bump version --- Cargo.toml | 2 +- crates/cubecl-core/Cargo.toml | 4 ++-- crates/cubecl-cuda/Cargo.toml | 10 +++++----- crates/cubecl-linalg/Cargo.toml | 4 ++-- crates/cubecl-runtime/Cargo.toml | 2 +- crates/cubecl-wgpu/Cargo.toml | 10 +++++----- crates/cubecl/Cargo.toml | 8 ++++---- examples/gelu/Cargo.toml | 2 +- xtask/Cargo.toml | 2 +- 9 files changed, 22 insertions(+), 22 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 7498570e7..2508fcf3a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -12,7 +12,7 @@ members = [ [workspace.package] edition = "2021" -version = "0.1.0" +version = "0.1.1" license = "MIT OR Apache-2.0" readme = "README.md" diff --git a/crates/cubecl-core/Cargo.toml b/crates/cubecl-core/Cargo.toml index ce6599e86..ac7244f09 100644 --- a/crates/cubecl-core/Cargo.toml +++ b/crates/cubecl-core/Cargo.toml @@ -20,12 +20,12 @@ template = [] export_tests = [] [dependencies] -cubecl-runtime = { path = "../cubecl-runtime", version = "0.1.0", default-features = false } +cubecl-runtime = { path = "../cubecl-runtime", version = "0.1.1", default-features = false } bytemuck = { workspace = true } half = { workspace = true, features = ["bytemuck"] } serde = { workspace = true } -cubecl-macros = { path = "../cubecl-macros", version = "0.1.0" } +cubecl-macros = { path = "../cubecl-macros", version = "0.1.1" } derive-new = { workspace = true } num-traits = { workspace = true } diff --git a/crates/cubecl-cuda/Cargo.toml b/crates/cubecl-cuda/Cargo.toml index 3755afe69..418aec749 100644 --- a/crates/cubecl-cuda/Cargo.toml +++ b/crates/cubecl-cuda/Cargo.toml @@ -20,11 +20,11 @@ autotune = [] std = ["cubecl-runtime/std", "cubecl-common/std", "cubecl-core/std"] [dependencies] -cubecl-runtime = { path = "../cubecl-runtime", version = "0.1.0", default-features = false, features = [ +cubecl-runtime = { path = "../cubecl-runtime", version = "0.1.1", default-features = false, features = [ "channel-mutex", ] } -cubecl-common = { path = "../cubecl-common", version = "0.1.0" } -cubecl-core = { path = "../cubecl-core", version = "0.1.0" } +cubecl-common = { path = "../cubecl-common", version = "0.1.1" } +cubecl-core = { path = "../cubecl-core", version = "0.1.1" } half = { workspace = true } bytemuck = { workspace = true } @@ -34,9 +34,9 @@ log = { workspace = true } derive-new = { workspace = true } [dev-dependencies] -cubecl-core = { path = "../cubecl-core", version = "0.1.0", features = [ +cubecl-core = { path = "../cubecl-core", version = "0.1.1", features = [ "export_tests", ] } -cubecl-linalg = { path = "../cubecl-linalg", version = "0.1.0", features = [ +cubecl-linalg = { path = "../cubecl-linalg", version = "0.1.1", features = [ "export_tests", ] } diff --git a/crates/cubecl-linalg/Cargo.toml b/crates/cubecl-linalg/Cargo.toml index 2d04b1e6c..506341bfd 100644 --- a/crates/cubecl-linalg/Cargo.toml +++ b/crates/cubecl-linalg/Cargo.toml @@ -19,8 +19,8 @@ std = [] export_tests = [] [dependencies] -cubecl-core = { path = "../cubecl-core", version = "0.1.0", default-features = false } -cubecl-runtime = { path = "../cubecl-runtime", version = "0.1.0", default-features = false } +cubecl-core = { path = "../cubecl-core", version = "0.1.1", default-features = false } +cubecl-runtime = { path = "../cubecl-runtime", version = "0.1.1", default-features = false } bytemuck = { workspace = true } half = { workspace = true, features = ["bytemuck"] } diff --git a/crates/cubecl-runtime/Cargo.toml b/crates/cubecl-runtime/Cargo.toml index 7bbd14e68..8e79f3caf 100644 --- a/crates/cubecl-runtime/Cargo.toml +++ b/crates/cubecl-runtime/Cargo.toml @@ -27,7 +27,7 @@ storage-bytes = [] autotune-persistent-cache = ["dirs", "md5", "serde", "serde_json"] # Assume std [dependencies] -cubecl-common = { path = "../cubecl-common", version = "0.1.0", default-features = false } +cubecl-common = { path = "../cubecl-common", version = "0.1.1", default-features = false } derive-new = { workspace = true } spin = { workspace = true } log = { workspace = true } diff --git a/crates/cubecl-wgpu/Cargo.toml b/crates/cubecl-wgpu/Cargo.toml index 028854605..a390d6424 100644 --- a/crates/cubecl-wgpu/Cargo.toml +++ b/crates/cubecl-wgpu/Cargo.toml @@ -20,11 +20,11 @@ autotune = [] std = ["cubecl-runtime/std", "cubecl-common/std", "cubecl-core/std"] [dependencies] -cubecl-runtime = { path = "../cubecl-runtime", version = "0.1.0", default-features = false, features = [ +cubecl-runtime = { path = "../cubecl-runtime", version = "0.1.1", default-features = false, features = [ "channel-mutex", ] } -cubecl-common = { path = "../cubecl-common", version = "0.1.0" } -cubecl-core = { path = "../cubecl-core", version = "0.1.0" } +cubecl-common = { path = "../cubecl-common", version = "0.1.1" } +cubecl-core = { path = "../cubecl-core", version = "0.1.1" } bytemuck = { workspace = true } wgpu = { version = "0.20.1", features = ["fragile-send-sync-non-atomic-wasm"] } @@ -36,9 +36,9 @@ derive-new = { workspace = true } hashbrown = { workspace = true } [dev-dependencies] -cubecl-core = { path = "../cubecl-core", version = "0.1.0", features = [ +cubecl-core = { path = "../cubecl-core", version = "0.1.1", features = [ "export_tests", ] } -cubecl-linalg = { path = "../cubecl-linalg", version = "0.1.0", features = [ +cubecl-linalg = { path = "../cubecl-linalg", version = "0.1.1", features = [ "export_tests", ] } diff --git a/crates/cubecl/Cargo.toml b/crates/cubecl/Cargo.toml index 8ad9403fe..83c0935ee 100644 --- a/crates/cubecl/Cargo.toml +++ b/crates/cubecl/Cargo.toml @@ -28,10 +28,10 @@ wgpu = ["cubecl-wgpu"] cuda = ["cubecl-cuda"] [dependencies] -cubecl-core = { path = "../cubecl-core", version = "0.1.0", default-features = false } -cubecl-wgpu = { path = "../cubecl-wgpu", version = "0.1.0", default-features = false, optional = true } -cubecl-cuda = { path = "../cubecl-cuda", version = "0.1.0", default-features = false, optional = true } -cubecl-linalg = { path = "../cubecl-linalg", version = "0.1.0", default-features = false, optional = true } +cubecl-core = { path = "../cubecl-core", version = "0.1.1", default-features = false } +cubecl-wgpu = { path = "../cubecl-wgpu", version = "0.1.1", default-features = false, optional = true } +cubecl-cuda = { path = "../cubecl-cuda", version = "0.1.1", default-features = false, optional = true } +cubecl-linalg = { path = "../cubecl-linalg", version = "0.1.1", default-features = false, optional = true } [[bench]] name = "matmul" diff --git a/examples/gelu/Cargo.toml b/examples/gelu/Cargo.toml index 8875481c7..b8033e9b9 100644 --- a/examples/gelu/Cargo.toml +++ b/examples/gelu/Cargo.toml @@ -12,5 +12,5 @@ wgpu = ["cubecl/wgpu"] cuda = ["cubecl/cuda"] [dependencies] -cubecl = { path = "../../crates/cubecl", version = "0.1.0" } +cubecl = { path = "../../crates/cubecl", version = "0.1.1" } half = { workspace = true } diff --git a/xtask/Cargo.toml b/xtask/Cargo.toml index 1ba5b49d3..20369f4b9 100644 --- a/xtask/Cargo.toml +++ b/xtask/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "xtask" -version = "0.1.0" +version = "0.1.1" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html