Skip to content

Commit

Permalink
Chore: Bump version (#426)
Browse files Browse the repository at this point in the history
  • Loading branch information
nathanielsimard authored Jan 15, 2025
1 parent f158518 commit 2fcedad
Show file tree
Hide file tree
Showing 19 changed files with 53 additions and 53 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ members = ["crates/*", "examples/*", "xtask"]
edition = "2021"
license = "MIT OR Apache-2.0"
readme = "README.md"
version = "0.4.0"
version = "0.5.0"


[workspace.dependencies]
Expand Down
6 changes: 3 additions & 3 deletions crates/cubecl-core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,11 @@ std = ["cubecl-runtime/std"]
template = []

[dependencies]
cubecl-runtime = { path = "../cubecl-runtime", version = "0.4.0", default-features = false }
cubecl-runtime = { path = "../cubecl-runtime", version = "0.5.0", default-features = false }

bytemuck = { workspace = true }
cubecl-common = { path = "../cubecl-common", version = "0.4.0", default-features = false }
cubecl-macros = { path = "../cubecl-macros", version = "0.4.0", default-features = false }
cubecl-common = { path = "../cubecl-common", version = "0.5.0", default-features = false }
cubecl-macros = { path = "../cubecl-macros", version = "0.5.0", default-features = false }
derive-new = { workspace = true }
derive_more = { workspace = true, features = [
"not",
Expand Down
6 changes: 3 additions & 3 deletions crates/cubecl-cpp/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ cuda = []
hip = []

[dependencies]
cubecl-common = { path = "../cubecl-common", version = "0.4.0", default-features = false }
cubecl-core = { path = "../cubecl-core", version = "0.4.0", default-features = false }
cubecl-runtime = { path = "../cubecl-runtime", version = "0.4.0", default-features = false, features = [
cubecl-common = { path = "../cubecl-common", version = "0.5.0", default-features = false }
cubecl-core = { path = "../cubecl-core", version = "0.5.0", default-features = false }
cubecl-runtime = { path = "../cubecl-runtime", version = "0.5.0", default-features = false, features = [
"channel-mutex",
] }

Expand Down
14 changes: 7 additions & 7 deletions crates/cubecl-cuda/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,12 @@ default = [
std = ["cubecl-runtime/std", "cubecl-common/std", "cubecl-core/std"]

[dependencies]
cubecl-common = { path = "../cubecl-common", version = "0.4.0", default-features = false }
cubecl-core = { path = "../cubecl-core", version = "0.4.0", default-features = false }
cubecl-cpp = { path = "../cubecl-cpp", version = "0.4.0", default-features = false, features = [
cubecl-common = { path = "../cubecl-common", version = "0.5.0", default-features = false }
cubecl-core = { path = "../cubecl-core", version = "0.5.0", default-features = false }
cubecl-cpp = { path = "../cubecl-cpp", version = "0.5.0", default-features = false, features = [
"cuda",
] }
cubecl-runtime = { path = "../cubecl-runtime", version = "0.4.0", default-features = false, features = [
cubecl-runtime = { path = "../cubecl-runtime", version = "0.5.0", default-features = false, features = [
"channel-mutex",
] }

Expand All @@ -41,13 +41,13 @@ half = { workspace = true }
log = { workspace = true }

[dev-dependencies]
cubecl-core = { path = "../cubecl-core", version = "0.4.0", features = [
cubecl-core = { path = "../cubecl-core", version = "0.5.0", features = [
"export_tests",
] }
cubecl-linalg = { path = "../cubecl-linalg", version = "0.4.0", features = [
cubecl-linalg = { path = "../cubecl-linalg", version = "0.5.0", features = [
"export_tests",
] }
cubecl-reduce = { path = "../cubecl-reduce", version = "0.4.0", features = [
cubecl-reduce = { path = "../cubecl-reduce", version = "0.5.0", features = [
"export_tests",
] }
paste = { workspace = true }
Expand Down
14 changes: 7 additions & 7 deletions crates/cubecl-hip/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@ wmma-intrinsics = []
is_hip = []

[dependencies]
cubecl-common = { path = "../cubecl-common", version = "0.4.0" }
cubecl-core = { path = "../cubecl-core", version = "0.4.0", default-features = false }
cubecl-cpp = { path = "../cubecl-cpp", version = "0.4.0", default-features = false, features = ["hip"] }
cubecl-runtime = { path = "../cubecl-runtime", version = "0.4.0", default-features = false, features = [
cubecl-common = { path = "../cubecl-common", version = "0.5.0" }
cubecl-core = { path = "../cubecl-core", version = "0.5.0", default-features = false }
cubecl-cpp = { path = "../cubecl-cpp", version = "0.5.0", default-features = false, features = ["hip"] }
cubecl-runtime = { path = "../cubecl-runtime", version = "0.5.0", default-features = false, features = [
"channel-mutex",
] }
cubecl-hip-sys = { version = "6.3.0", default-features = false, features = ["rocm__6_3_0"] }
Expand All @@ -38,13 +38,13 @@ log = { workspace = true }
paste = { workspace = true }

[dev-dependencies]
cubecl-core = { path = "../cubecl-core", version = "0.4.0", features = [
cubecl-core = { path = "../cubecl-core", version = "0.5.0", features = [
"export_tests",
] }
cubecl-linalg = { path = "../cubecl-linalg", version = "0.4.0", features = [
cubecl-linalg = { path = "../cubecl-linalg", version = "0.5.0", features = [
"export_tests",
] }
cubecl-reduce = { path = "../cubecl-reduce", version = "0.4.0", features = [
cubecl-reduce = { path = "../cubecl-reduce", version = "0.5.0", features = [
"export_tests",
] }
pretty_assertions = { workspace = true }
4 changes: 2 additions & 2 deletions crates/cubecl-linalg/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ std = ["cubecl-runtime/std", "cubecl-core/std"]

[dependencies]
bytemuck = { workspace = true }
cubecl-core = { path = "../cubecl-core", version = "0.4.0", default-features = false }
cubecl-runtime = { path = "../cubecl-runtime", version = "0.4.0", default-features = false }
cubecl-core = { path = "../cubecl-core", version = "0.5.0", default-features = false }
cubecl-runtime = { path = "../cubecl-runtime", version = "0.5.0", default-features = false }
half = { workspace = true, features = ["bytemuck"] }
pretty_assertions = { workspace = true, optional = true }
serde = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion crates/cubecl-macros/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,4 @@ proc-macro2 = { workspace = true }
quote = { workspace = true }
syn = { workspace = true }

cubecl-common = { path = "../cubecl-common", version = "0.4", default-features = false }
cubecl-common = { path = "../cubecl-common", version = "0.5", default-features = false }
4 changes: 2 additions & 2 deletions crates/cubecl-opt/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ default = ["std", "cubecl-common/default", "cubecl-core/default"]
std = ["cubecl-common/std", "cubecl-core/std"]

[dependencies]
cubecl-common = { path = "../cubecl-common", version = "0.4.0", default-features = false }
cubecl-core = { path = "../cubecl-core", version = "0.4.0", default-features = false }
cubecl-common = { path = "../cubecl-common", version = "0.5.0", default-features = false }
cubecl-core = { path = "../cubecl-core", version = "0.5.0", default-features = false }
float-ord = "0.3"
log = "0.4"
num = "0.4"
Expand Down
4 changes: 2 additions & 2 deletions crates/cubecl-reduce/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ std = ["cubecl-runtime/std", "cubecl-core/std"]
export_tests = ["pretty_assertions", "rand"]

[dependencies]
cubecl-core = { path = "../cubecl-core", version = "0.4.0", default-features = false }
cubecl-runtime = { path = "../cubecl-runtime", version = "0.4.0", default-features = false }
cubecl-core = { path = "../cubecl-core", version = "0.5.0", default-features = false }
cubecl-runtime = { path = "../cubecl-runtime", version = "0.5.0", default-features = false }
num-traits = "0.2.19"
pretty_assertions = { workspace = true, optional = true }
rand = { workspace = true, optional = true }
2 changes: 1 addition & 1 deletion crates/cubecl-runtime/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ storage-bytes = []
[dependencies]
async-channel = { workspace = true } # Assume std
async-lock = { version = "3.4.0" }
cubecl-common = { path = "../cubecl-common", version = "0.4.0", default-features = false }
cubecl-common = { path = "../cubecl-common", version = "0.5.0", default-features = false }
derive-new = { workspace = true }
hashbrown = { workspace = true }
log = { workspace = true }
Expand Down
8 changes: 4 additions & 4 deletions crates/cubecl-spirv/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ default = [
std = ["cubecl-common/std", "cubecl-core/std", "cubecl-runtime/std"]

[dependencies]
cubecl-common = { path = "../cubecl-common", version = "0.4.0", default-features = false }
cubecl-core = { path = "../cubecl-core", version = "0.4.0" }
cubecl-runtime = { path = "../cubecl-runtime", version = "0.4.0", default-features = false, features = [
cubecl-common = { path = "../cubecl-common", version = "0.5.0", default-features = false }
cubecl-core = { path = "../cubecl-core", version = "0.5.0" }
cubecl-runtime = { path = "../cubecl-runtime", version = "0.5.0", default-features = false, features = [
"channel-mutex",
] }
half = { workspace = true }
Expand All @@ -31,4 +31,4 @@ hashbrown = { workspace = true }
rspirv = "0.12"

# Optimizer
cubecl-opt = { path = "../cubecl-opt", version = "0.4.0" }
cubecl-opt = { path = "../cubecl-opt", version = "0.5.0" }
14 changes: 7 additions & 7 deletions crates/cubecl-wgpu/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,16 +23,16 @@ std = ["cubecl-runtime/std", "cubecl-common/std", "cubecl-core/std"]
spirv-dump = ["sanitize-filename"]

[dependencies]
cubecl-common = { path = "../cubecl-common", version = "0.4.0", default-features = false }
cubecl-core = { path = "../cubecl-core", version = "0.4.0", default-features = false }
cubecl-runtime = { path = "../cubecl-runtime", version = "0.4.0", default-features = false, features = [
cubecl-common = { path = "../cubecl-common", version = "0.5.0", default-features = false }
cubecl-core = { path = "../cubecl-core", version = "0.5.0", default-features = false }
cubecl-runtime = { path = "../cubecl-runtime", version = "0.5.0", default-features = false, features = [
"channel-mutex",
] }
sanitize-filename = { workspace = true, optional = true }

# SPIR-V
ash = { version = "0.38", optional = true }
cubecl-spirv = { path = "../cubecl-spirv", version = "0.4.0", optional = true }
cubecl-spirv = { path = "../cubecl-spirv", version = "0.5.0", optional = true }

bytemuck = { workspace = true }

Expand All @@ -53,13 +53,13 @@ wgpu = { version = "23.0.0", features = ["fragile-send-sync-non-atomic-wasm"] }
wgpu = { version = "23.0.0", features = ["vulkan-portability", "fragile-send-sync-non-atomic-wasm"] }

[dev-dependencies]
cubecl-core = { path = "../cubecl-core", version = "0.4.0", features = [
cubecl-core = { path = "../cubecl-core", version = "0.5.0", features = [
"export_tests",
] }
cubecl-linalg = { path = "../cubecl-linalg", version = "0.4.0", features = [
cubecl-linalg = { path = "../cubecl-linalg", version = "0.5.0", features = [
"export_tests",
] }
cubecl-reduce = { path = "../cubecl-reduce", version = "0.4.0", features = [
cubecl-reduce = { path = "../cubecl-reduce", version = "0.5.0", features = [
"export_tests",
] }
half = { workspace = true }
Expand Down
14 changes: 7 additions & 7 deletions crates/cubecl/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,13 +34,13 @@ wgpu = ["cubecl-wgpu"]
wgpu-spirv = ["wgpu", "cubecl-wgpu/spirv"]

[dependencies]
cubecl-core = { path = "../cubecl-core", version = "0.4.0", default-features = false }
cubecl-cuda = { path = "../cubecl-cuda", version = "0.4.0", default-features = false, optional = true }
cubecl-hip = { path = "../cubecl-hip", version = "0.4.0", default-features = false, optional = true }
cubecl-linalg = { path = "../cubecl-linalg", version = "0.4.0", default-features = false, optional = true }
cubecl-reduce = { path = "../cubecl-reduce", version = "0.4.0", default-features = false, optional = true }
cubecl-runtime = { path = "../cubecl-runtime", version = "0.4.0", default-features = false }
cubecl-wgpu = { path = "../cubecl-wgpu", version = "0.4.0", default-features = false, optional = true }
cubecl-core = { path = "../cubecl-core", version = "0.5.0", default-features = false }
cubecl-cuda = { path = "../cubecl-cuda", version = "0.5.0", default-features = false, optional = true }
cubecl-hip = { path = "../cubecl-hip", version = "0.5.0", default-features = false, optional = true }
cubecl-linalg = { path = "../cubecl-linalg", version = "0.5.0", default-features = false, optional = true }
cubecl-reduce = { path = "../cubecl-reduce", version = "0.5.0", default-features = false, optional = true }
cubecl-runtime = { path = "../cubecl-runtime", version = "0.5.0", default-features = false }
cubecl-wgpu = { path = "../cubecl-wgpu", version = "0.5.0", default-features = false, optional = true }
half = { workspace = true }

[[bench]]
Expand Down
2 changes: 1 addition & 1 deletion examples/device_sharing/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ wgpu = ["cubecl/wgpu"]
cuda = ["cubecl/cuda"]

[dependencies]
cubecl = { path = "../../crates/cubecl", version = "0.4.0" }
cubecl = { path = "../../crates/cubecl", version = "0.5.0" }
half = { workspace = true }

sum_things = { path = "../sum_things" }
Expand Down
2 changes: 1 addition & 1 deletion examples/fusing/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@ wgpu = ["cubecl/wgpu"]
cuda = ["cubecl/cuda"]

[dependencies]
cubecl = { path = "../../crates/cubecl", version = "0.4.0", default-features = false }
cubecl = { path = "../../crates/cubecl", version = "0.5.0", default-features = false }
half = { workspace = true }
2 changes: 1 addition & 1 deletion examples/gelu/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@ wgpu = ["cubecl/wgpu"]
cuda = ["cubecl/cuda"]

[dependencies]
cubecl = { path = "../../crates/cubecl", version = "0.4.0" }
cubecl = { path = "../../crates/cubecl", version = "0.5.0" }
half = { workspace = true }
2 changes: 1 addition & 1 deletion examples/normalization/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@ wgpu = ["cubecl/wgpu"]
cuda = ["cubecl/cuda"]

[dependencies]
cubecl = { path = "../../crates/cubecl", version = "0.4.0" }
cubecl = { path = "../../crates/cubecl", version = "0.5.0" }
half = { workspace = true }
2 changes: 1 addition & 1 deletion examples/sum_things/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@ wgpu = ["cubecl/wgpu"]
cuda = ["cubecl/cuda"]

[dependencies]
cubecl = { path = "../../crates/cubecl", version = "0.4.0" }
cubecl = { path = "../../crates/cubecl", version = "0.5.0" }
half = { workspace = true }
2 changes: 1 addition & 1 deletion xtask/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "xtask"
version = "1.2.0"
version = "1.3.0"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
Expand Down

0 comments on commit 2fcedad

Please sign in to comment.