Skip to content

Commit

Permalink
chore: bump version for next release (tracel-ai#533)
Browse files Browse the repository at this point in the history
  • Loading branch information
nathanielsimard authored Jul 26, 2023
1 parent 7c9852b commit 0a5a2d7
Show file tree
Hide file tree
Showing 21 changed files with 54 additions and 53 deletions.
1 change: 1 addition & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@ jobs:
needs:
- publish-burn-tensor
- publish-burn-autodiff
- publish-burn-ndarray
- publish-burn-common
with:
crate: burn-wgpu
Expand Down
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.8.0"
version = "0.9.0"

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

[dependencies]
burn-common = {path = "../burn-common", version = "0.8.0"}
burn-tensor = {path = "../burn-tensor", version = "0.8.0"}
burn-tensor-testgen = {path = "../burn-tensor-testgen", version = "0.8.0", optional = true}
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}

derive-new = {workspace = true}
spin = {workspace = true}
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.8.0"
version = "0.9.0"

[features]
default = ["std"]
Expand Down
20 changes: 10 additions & 10 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.8.0"
version = "0.9.0"

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

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

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

derive-new = {workspace = true}
libm = {workspace = true}
Expand All @@ -63,10 +63,10 @@ rmp-serde = {workspace = true, optional = true}
serde_json = {workspace = true, features = ["alloc"]}#Default enables std

[dev-dependencies]
burn-dataset = {path = "../burn-dataset", version = "0.8.0", features = [
burn-dataset = {path = "../burn-dataset", version = "0.9.0", features = [
"fake",
]}

burn-ndarray = {path = "../burn-ndarray", version = "0.8.0", default-features = false}
burn-tch = {path = "../burn-tch", version = "0.8.0"}
burn-wgpu = {path = "../burn-wgpu", version = "0.8.0"}
burn-ndarray = {path = "../burn-ndarray", version = "0.9.0", default-features = false}
burn-tch = {path = "../burn-tch", version = "0.9.0" }
burn-wgpu = {path = "../burn-wgpu", version = "0.9.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.8.0"
version = "0.9.0"

[features]
default = [
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.8.0"
version = "0.9.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.8.0"
version = "0.9.0"

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

[dependencies]
burn = {path = "../burn", version = "0.8.0"}
burn-common = {path = "../burn-common", version = "0.8.0"}
burn-ndarray = {path = "../burn-ndarray", version = "0.8.0"}
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" }

bytemuck = {workspace = true}
derive-new = {workspace = true}
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.8.0"
version = "0.9.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.8.0", features = ["export_tests"], optional = true}
burn-common = {path = "../burn-common", version = "0.8.0", default-features = false}
burn-tensor = {path = "../burn-tensor", version = "0.8.0", default-features = false, features = ["export_tests"]}
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"]}

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.8.0"
version = "0.9.0"

[dependencies]

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

burn = {path = "../burn", version = "0.8.0", default-features = false}
burn-ndarray = {path = "../burn-ndarray", version = "0.8.0", default-features = false}
burn = {path = "../burn", version = "0.9.0", default-features = false}
burn-ndarray = {path = "../burn-ndarray", version = "0.9.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.8.0"
version = "0.9.0"

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

[dependencies]
burn-tensor = {path = "../burn-tensor", version = "0.8.0"}
burn-tensor = {path = "../burn-tensor", version = "0.9.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.8.0", default-features = false, features = [
burn-autodiff = {path = "../burn-autodiff", version = "0.9.0", default-features = false, features = [
"export_tests",
]}
burn-tensor = {path = "../burn-tensor", version = "0.8.0", default-features = false, features = [
burn-tensor = {path = "../burn-tensor", version = "0.9.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.8.0"
version = "0.9.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.8.0"
version = "0.9.0"

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

[dependencies]
burn-tensor-testgen = {path = "../burn-tensor-testgen", version = "0.8.0", optional = true}
burn-tensor-testgen = {path = "../burn-tensor-testgen", version = "0.9.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,10 +8,10 @@ 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.8.0"
version = "0.9.0"

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

# Console
indicatif = "0.17.5"
Expand All @@ -29,4 +29,4 @@ derive-new = {workspace = true}
serde = {workspace = true, features = ["std", "derive"]}

[dev-dependencies]
burn-ndarray = {path = "../burn-ndarray", version = "0.8.0"}
burn-ndarray = {path = "../burn-ndarray", version = "0.9.0" }
12 changes: 6 additions & 6 deletions burn-wgpu/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,15 @@ 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.8.0"
version = "0.9.0"

[features]
async = []
default = ["async"]

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

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

[[bench]]
name = "unary"
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.8.0"
version = "0.9.0"

[features]
default = ["std", "train"]
Expand All @@ -22,5 +22,5 @@ train = ["std", "burn-train"] # Training requires std

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

burn-core = {path = "../burn-core", version = "0.8.0", default-features = false}
burn-train = {path = "../burn-train", version = "0.8.0", optional = true}
burn-core = {path = "../burn-core", version = "0.9.0", default-features = false}
burn-train = {path = "../burn-train", version = "0.9.0", optional = true}
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.8.0"
version = "0.9.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.8.0"
version = "0.9.0"

[features]
default = []
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.8.0"
version = "0.9.0"

[dependencies]
burn = {path = "../../burn", features = ["experimental-named-tensor"]}
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.8.0"
version = "0.9.0"

[features]
default = []
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.8.0"
version = "0.9.0"

[features]
f16 = []
Expand Down
2 changes: 1 addition & 1 deletion examples/text-generation/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-generation"
publish = false
version = "0.8.0"
version = "0.9.0"

[features]
default = []
Expand Down

0 comments on commit 0a5a2d7

Please sign in to comment.