Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
nathanielsimard committed Jul 19, 2024
1 parent cc5eb51 commit c85e869
Show file tree
Hide file tree
Showing 9 changed files with 22 additions and 22 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"

Expand Down
4 changes: 2 additions & 2 deletions crates/cubecl-core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }

Expand Down
10 changes: 5 additions & 5 deletions crates/cubecl-cuda/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }
Expand All @@ -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",
] }
4 changes: 2 additions & 2 deletions crates/cubecl-linalg/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"] }

Expand Down
2 changes: 1 addition & 1 deletion crates/cubecl-runtime/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }
Expand Down
10 changes: 5 additions & 5 deletions crates/cubecl-wgpu/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"] }
Expand All @@ -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",
] }
8 changes: 4 additions & 4 deletions crates/cubecl/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
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.1.0" }
cubecl = { path = "../../crates/cubecl", version = "0.1.1" }
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 = "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
Expand Down

0 comments on commit c85e869

Please sign in to comment.