Skip to content

Commit

Permalink
Chore: bump version (tracel-ai#777)
Browse files Browse the repository at this point in the history
  • Loading branch information
nathanielsimard authored Sep 6, 2023
1 parent 76894ef commit af0be5c
Show file tree
Hide file tree
Showing 26 changed files with 65 additions and 65 deletions.
8 changes: 4 additions & 4 deletions burn-autodiff/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,16 @@ license = "MIT OR Apache-2.0"
name = "burn-autodiff"
readme = "README.md"
repository = "https://github.com/burn-rs/burn/tree/main/burn-autodiff"
version = "0.9.0"
version = "0.10.0"

[features]
default = ["export_tests"]
export_tests = ["burn-tensor-testgen"]

[dependencies]
burn-common = {path = "../burn-common", version = "0.9.0" }
burn-tensor = {path = "../burn-tensor", version = "0.9.0" }
burn-tensor-testgen = {path = "../burn-tensor-testgen", version = "0.9.0", optional = true}
burn-common = {path = "../burn-common", version = "0.10.0" }
burn-tensor = {path = "../burn-tensor", version = "0.10.0" }
burn-tensor-testgen = {path = "../burn-tensor-testgen", version = "0.10.0", optional = true}

derive-new = {workspace = true}
spin = {workspace = true}
10 changes: 5 additions & 5 deletions burn-candle/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,23 +8,23 @@ license = "MIT OR Apache-2.0"
name = "burn-candle"
readme = "README.md"
repository = "https://github.com/burn-rs/burn/tree/main/burn-candle"
version = "0.9.0"
version = "0.10.0"

[features]

[dependencies]
derive-new = { workspace = true }
burn-tensor = { path = "../burn-tensor", version = "0.9.0" }
burn-tensor = { path = "../burn-tensor", version = "0.10.0" }
half = { workspace = true, features = ["std"] }
# candle-core = { version = "0.1.2" }
candle-core = { git = "https://github.com/huggingface/candle", rev = "237323c" }

[dev-dependencies]
burn-autodiff = { path = "../burn-autodiff", version = "0.9.0", default-features = false, features = [
burn-autodiff = { path = "../burn-autodiff", version = "0.10.0", default-features = false, features = [
"export_tests",
] }
burn-tch = { path = "../burn-tch", version = "0.9.0", default-features = false, features = [
burn-tch = { path = "../burn-tch", version = "0.10.0", default-features = false, features = [
] }
burn-tensor = { path = "../burn-tensor", version = "0.9.0", default-features = false, features = [
burn-tensor = { path = "../burn-tensor", version = "0.10.0", default-features = false, features = [
"export_tests",
] }
2 changes: 1 addition & 1 deletion burn-common/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ license = "MIT OR Apache-2.0"
name = "burn-common"
readme = "README.md"
repository = "https://github.com/burn-rs/burn/tree/main/burn-common"
version = "0.9.0"
version = "0.10.0"

[features]
default = ["std"]
Expand Down
24 changes: 12 additions & 12 deletions burn-core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ license = "MIT OR Apache-2.0"
name = "burn-core"
readme = "README.md"
repository = "https://github.com/burn-rs/burn/tree/main/burn-core"
version = "0.9.0"
version = "0.10.0"

[features]
default = ["std", "dataset-minimal"]
Expand Down Expand Up @@ -55,16 +55,16 @@ test-wgpu = ["wgpu"] # To use wgpu during testing, default uses ndarray.

# ** Please make sure all dependencies support no_std when std is disabled **

burn-common = { path = "../burn-common", version = "0.9.0", default-features = false }
burn-dataset = { path = "../burn-dataset", version = "0.9.0", optional = true, default-features = false }
burn-derive = { path = "../burn-derive", version = "0.9.0" }
burn-tensor = { path = "../burn-tensor", version = "0.9.0", default-features = false }
burn-common = { path = "../burn-common", version = "0.10.0", default-features = false }
burn-dataset = { path = "../burn-dataset", version = "0.10.0", optional = true, default-features = false }
burn-derive = { path = "../burn-derive", version = "0.10.0" }
burn-tensor = { path = "../burn-tensor", version = "0.10.0", default-features = false }

# Backends
burn-ndarray = { path = "../burn-ndarray", version = "0.9.0", optional = true, default-features = false }
burn-autodiff = { path = "../burn-autodiff", version = "0.9.0", optional = true }
burn-wgpu = { path = "../burn-wgpu", version = "0.9.0", optional = true }
burn-tch = { path = "../burn-tch", version = "0.9.0", optional = true }
burn-ndarray = { path = "../burn-ndarray", version = "0.10.0", optional = true, default-features = false }
burn-autodiff = { path = "../burn-autodiff", version = "0.10.0", optional = true }
burn-wgpu = { path = "../burn-wgpu", version = "0.10.0", optional = true }
burn-tch = { path = "../burn-tch", version = "0.10.0", optional = true }

derive-new = { workspace = true }
libm = { workspace = true }
Expand All @@ -87,9 +87,9 @@ serde_json = { workspace = true, features = ["alloc"] } #Default enables std

[dev-dependencies]
tempfile = { workspace = true }
burn-dataset = { path = "../burn-dataset", version = "0.9.0", features = [
burn-dataset = { path = "../burn-dataset", version = "0.10.0", features = [
"fake",
] }

burn-ndarray = { path = "../burn-ndarray", version = "0.9.0", default-features = false }
burn-autodiff = { path = "../burn-autodiff", version = "0.9.0" }
burn-ndarray = { path = "../burn-ndarray", version = "0.10.0", default-features = false }
burn-autodiff = { path = "../burn-autodiff", version = "0.10.0" }
2 changes: 1 addition & 1 deletion burn-dataset/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ license = "MIT OR Apache-2.0"
name = "burn-dataset"
readme = "README.md"
repository = "https://github.com/burn-rs/burn/tree/main/burn-dataset"
version = "0.9.0"
version = "0.10.0"

[features]
default = ["sqlite-bundled"]
Expand Down
2 changes: 1 addition & 1 deletion burn-derive/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ license = "MIT OR Apache-2.0"
name = "burn-derive"
readme = "README.md"
repository = "https://github.com/burn-rs/burn/tree/main/burn-derive"
version = "0.9.0"
version = "0.10.0"

[lib]
proc-macro = true
Expand Down
8 changes: 4 additions & 4 deletions burn-import/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,16 +10,16 @@ name = "burn-import"
readme = "README.md"
repository = "https://github.com/burn-rs/burn/tree/main/burn-import"

version = "0.9.0"
version = "0.10.0"

[features]
default = ["onnx"]
onnx = []

[dependencies]
burn = {path = "../burn", version = "0.9.0" }
burn-common = {path = "../burn-common", version = "0.9.0" }
burn-ndarray = {path = "../burn-ndarray", version = "0.9.0" }
burn = {path = "../burn", version = "0.10.0" }
burn-common = {path = "../burn-common", version = "0.10.0" }
burn-ndarray = {path = "../burn-ndarray", version = "0.10.0" }

bytemuck = {workspace = true}
derive-new = {workspace = true}
Expand Down
2 changes: 1 addition & 1 deletion burn-import/onnx-tests/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "onnx-tests"
version = "0.9.0"
version = "0.10.0"
edition = "2021"

[dev-dependencies]
Expand Down
8 changes: 4 additions & 4 deletions burn-ndarray/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ license = "MIT OR Apache-2.0"
name = "burn-ndarray"
readme = "README.md"
repository = "https://github.com/burn-rs/burn/tree/main/burn-ndarray"
version = "0.9.0"
version = "0.10.0"

[features]
default = ["std"]
Expand Down Expand Up @@ -38,9 +38,9 @@ blas-openblas-system = [

# ** Please make sure all dependencies support no_std when std is disabled **

burn-autodiff = {path = "../burn-autodiff", version = "0.9.0", features = ["export_tests"], optional = true}
burn-common = {path = "../burn-common", version = "0.9.0", default-features = false}
burn-tensor = {path = "../burn-tensor", version = "0.9.0", default-features = false, features = ["export_tests"]}
burn-autodiff = {path = "../burn-autodiff", version = "0.10.0", features = ["export_tests"], optional = true}
burn-common = {path = "../burn-common", version = "0.10.0", default-features = false}
burn-tensor = {path = "../burn-tensor", version = "0.10.0", default-features = false, features = ["export_tests"]}

matrixmultiply = {version = "0.3.7", default-features = false}
rayon = {workspace = true, optional = true}
Expand Down
6 changes: 3 additions & 3 deletions burn-no-std-tests/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@ license = "MIT OR Apache-2.0"
name = "burn-no-std-tests"
readme = "README.md"
repository = "https://github.com/burn-rs/burn/tree/main/burn-no-std-tests"
version = "0.9.0"
version = "0.10.0"

[dependencies]

# ** Please make sure all dependencies support no_std **

burn = {path = "../burn", version = "0.9.0", default-features = false}
burn-ndarray = {path = "../burn-ndarray", version = "0.9.0", default-features = false}
burn = {path = "../burn", version = "0.10.0", default-features = false}
burn-ndarray = {path = "../burn-ndarray", version = "0.10.0", default-features = false}

serde = {workspace = true}
8 changes: 4 additions & 4 deletions burn-tch/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,23 +8,23 @@ license = "MIT OR Apache-2.0"
name = "burn-tch"
readme = "README.md"
repository = "https://github.com/burn-rs/burn/tree/main/burn-tch"
version = "0.9.0"
version = "0.10.0"

[features]
doc = ["tch/doc-only"]

[dependencies]
burn-tensor = {path = "../burn-tensor", version = "0.9.0" }
burn-tensor = {path = "../burn-tensor", version = "0.10.0" }

half = {workspace = true, features = ["std"]}
libc = "0.2.146"
rand = {workspace = true, features = ["std"]}
tch = {version = "0.13.0", features = ["download-libtorch"]}

[dev-dependencies]
burn-autodiff = {path = "../burn-autodiff", version = "0.9.0", default-features = false, features = [
burn-autodiff = {path = "../burn-autodiff", version = "0.10.0", default-features = false, features = [
"export_tests",
]}
burn-tensor = {path = "../burn-tensor", version = "0.9.0", default-features = false, features = [
burn-tensor = {path = "../burn-tensor", version = "0.10.0", default-features = false, features = [
"export_tests",
]}
2 changes: 1 addition & 1 deletion burn-tensor-testgen/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ license = "MIT OR Apache-2.0"
name = "burn-tensor-testgen"
readme = "README.md"
repository = "https://github.com/burn-rs/burn/tree/main/burn-tensor-testgen"
version = "0.9.0"
version = "0.10.0"

[lib]
proc-macro = true
Expand Down
4 changes: 2 additions & 2 deletions burn-tensor/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ license = "MIT OR Apache-2.0"
name = "burn-tensor"
readme = "README.md"
repository = "https://github.com/burn-rs/burn/tree/main/burn-tensor"
version = "0.9.0"
version = "0.10.0"

[features]
default = ["std"]
Expand All @@ -20,7 +20,7 @@ std = [
]

[dependencies]
burn-tensor-testgen = {path = "../burn-tensor-testgen", version = "0.9.0", optional = true}
burn-tensor-testgen = {path = "../burn-tensor-testgen", version = "0.10.0", optional = true}

derive-new = {workspace = true}
half = {workspace = true}
Expand Down
6 changes: 3 additions & 3 deletions burn-train/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ license = "MIT OR Apache-2.0"
name = "burn-train"
readme = "README.md"
repository = "https://github.com/burn-rs/burn/tree/main/burn-train"
version = "0.9.0"
version = "0.10.0"

[features]
default = ["metrics", "ui"]
Expand All @@ -25,7 +25,7 @@ ui = [
]

[dependencies]
burn-core = {path = "../burn-core", version = "0.9.0" }
burn-core = {path = "../burn-core", version = "0.10.0" }

log = {workspace = true}
tracing-subscriber.workspace = true
Expand All @@ -48,4 +48,4 @@ derive-new = {workspace = true}
serde = {workspace = true, features = ["std", "derive"]}

[dev-dependencies]
burn-ndarray = {path = "../burn-ndarray", version = "0.9.0" }
burn-ndarray = {path = "../burn-ndarray", version = "0.10.0" }
12 changes: 6 additions & 6 deletions burn-wgpu/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ license = "MIT OR Apache-2.0"
name = "burn-wgpu"
readme = "README.md"
repository = "https://github.com/burn-rs/burn/tree/main/burn-wgpu"
version = "0.9.0"
version = "0.10.0"

[features]
default = ["async"]
Expand All @@ -17,8 +17,8 @@ async = []
autotune = []

[dependencies]
burn-common = { path = "../burn-common", version = "0.9.0" }
burn-tensor = { path = "../burn-tensor", version = "0.9.0" }
burn-common = { path = "../burn-common", version = "0.10.0" }
burn-tensor = { path = "../burn-tensor", version = "0.10.0" }
bytemuck = { workspace = true }
derive-new = { workspace = true }
log = { workspace = true }
Expand All @@ -36,13 +36,13 @@ serde = { workspace = true }
text_placeholder = { version = "0.5.0", features = ["struct_context"] }

[dev-dependencies]
burn-autodiff = { path = "../burn-autodiff", version = "0.9.0", default-features = false, features = [
burn-autodiff = { path = "../burn-autodiff", version = "0.10.0", default-features = false, features = [
"export_tests",
] }
burn-tensor = { path = "../burn-tensor", version = "0.9.0", default-features = false, features = [
burn-tensor = { path = "../burn-tensor", version = "0.10.0", default-features = false, features = [
"export_tests",
] }
burn-ndarray = { path = "../burn-ndarray", version = "0.9.0" }
burn-ndarray = { path = "../burn-ndarray", version = "0.10.0" }
serial_test = "2.0.0"

[[bench]]
Expand Down
6 changes: 3 additions & 3 deletions burn/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ license = "MIT OR Apache-2.0"
name = "burn"
readme = "README.md"
repository = "https://github.com/burn-rs/burn"
version = "0.9.0"
version = "0.10.0"
rust-version = "1.71"

[features]
Expand Down Expand Up @@ -55,5 +55,5 @@ experimental-named-tensor = ["burn-core/experimental-named-tensor"]

# ** Please make sure all dependencies support no_std when std is disabled **

burn-core = {path = "../burn-core", version = "0.9.0", default-features = false}
burn-train = {path = "../burn-train", version = "0.9.0", optional = true, default-features = false }
burn-core = {path = "../burn-core", version = "0.10.0", default-features = false}
burn-train = {path = "../burn-train", version = "0.10.0", optional = true, default-features = false }
2 changes: 1 addition & 1 deletion examples/custom-training-loop/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ edition = "2021"
license = "MIT OR Apache-2.0"
name = "custom-training-loop"
publish = false
version = "0.9.0"
version = "0.10.0"

[dependencies]
burn = {path = "../../burn", features=["autodiff", "wgpu"]}
Expand Down
2 changes: 1 addition & 1 deletion examples/custom-wgpu-kernel/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ edition = "2021"
license = "MIT OR Apache-2.0"
name = "custom-wgpu-kernel"
publish = false
version = "0.9.0"
version = "0.10.0"

[dependencies]
burn = {path = "../../burn", features=["autodiff", "wgpu"]}
Expand Down
2 changes: 1 addition & 1 deletion examples/guide/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ edition = "2021"
license = "MIT OR Apache-2.0"
name = "guide"
publish = false
version = "0.9.0"
version = "0.10.0"

[dependencies]
burn = {path = "../../burn", features = ["train", "wgpu"]}
Expand Down
2 changes: 1 addition & 1 deletion examples/mnist-inference-web/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ edition = "2021"
license = "MIT OR Apache-2.0"
name = "mnist-inference-web"
publish = false
version = "0.9.0"
version = "0.10.0"

[lib]
crate-type = ["cdylib"]
Expand Down
2 changes: 1 addition & 1 deletion examples/mnist/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ edition = "2021"
license = "MIT OR Apache-2.0"
name = "mnist"
publish = false
version = "0.9.0"
version = "0.10.0"

[features]
default = ["burn/dataset-sqlite-bundled"]
Expand Down
2 changes: 1 addition & 1 deletion examples/named-tensor/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ edition = "2021"
license = "MIT OR Apache-2.0"
name = "named-tensor"
publish = false
version = "0.9.0"
version = "0.10.0"

[dependencies]
burn = {path = "../../burn", features = ["experimental-named-tensor", "ndarray"]}
Expand Down
2 changes: 1 addition & 1 deletion examples/onnx-inference/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ edition = "2021"
license = "MIT OR Apache-2.0"
name = "onnx-inference"
publish = false
version = "0.9.0"
version = "0.10.0"

[features]
default = ["burn/dataset-sqlite-bundled"]
Expand Down
2 changes: 1 addition & 1 deletion examples/text-classification/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ edition = "2021"
license = "MIT OR Apache-2.0"
name = "text-classification"
publish = false
version = "0.9.0"
version = "0.10.0"

[features]
default = ["burn/dataset-sqlite-bundled"]
Expand Down
Loading

0 comments on commit af0be5c

Please sign in to comment.