Skip to content

Commit

Permalink
Prepare next release (#335)
Browse files Browse the repository at this point in the history
  • Loading branch information
nathanielsimard authored May 6, 2023
1 parent b7b4f32 commit 29eecd6
Show file tree
Hide file tree
Showing 14 changed files with 48 additions and 40 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -97,3 +97,11 @@ jobs:
with:
crate: burn
secrets: inherit

publish-burn-import:
uses: burn-rs/burn/.github/workflows/publish-template.yml@main
needs:
- publish-burn
with:
crate: burn-import
secrets: inherit
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/Apache-2.0"
name = "burn-autodiff"
readme = "README.md"
repository = "https://github.com/burn-rs/burn/tree/main/burn-autodiff"
version = "0.6.0"
version = "0.7.0"

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

[dependencies]
burn-common = {path = "../burn-common", version = "0.6.0"}
burn-tensor = {path = "../burn-tensor", version = "0.6.0"}
burn-tensor-testgen = {path = "../burn-tensor-testgen", version = "0.6.0", optional = true}
burn-common = {path = "../burn-common", version = "0.7.0"}
burn-tensor = {path = "../burn-tensor", version = "0.7.0"}
burn-tensor-testgen = {path = "../burn-tensor-testgen", version = "0.7.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 @@ keywords = []
categories = []
readme = "README.md"
repository = "https://github.com/burn-rs/burn/tree/main/burn-common"
version = "0.6.0"
version = "0.7.0"

[features]
default = ["std"]
Expand Down
18 changes: 9 additions & 9 deletions burn-core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ name = "burn-core"
readme = "README.md"
repository = "https://github.com/burn-rs/burn/tree/main/burn-core"

version = "0.6.0"
version = "0.7.0"

[features]
default = ["std"]
Expand Down Expand Up @@ -39,11 +39,11 @@ experimental-named-tensor = ["burn-tensor/experimental-named-tensor"]

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

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

derive-new = {workspace = true}
libm = {workspace = true}
Expand All @@ -65,9 +65,9 @@ bincode = {workspace = true}
half = {workspace = true}

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

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

[features]
default = ["fake"]
Expand Down
4 changes: 2 additions & 2 deletions burn-derive/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ license = "MIT/Apache-2.0"
name = "burn-derive"
readme = "README.md"
repository = "https://github.com/burn-rs/burn/tree/main/burn-derive"
version = "0.6.0"
version = "0.7.0"

[lib]
proc-macro = true
Expand All @@ -19,4 +19,4 @@ proc-macro = true
proc-macro2 = {workspace = true}
quote = {workspace = true}
# syn = {workspace = true}
syn = "1.0.76" # TODO upgrade to 2.0
syn = "1.0.76" # TODO upgrade to 2.0
6 changes: 3 additions & 3 deletions burn-import/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,15 @@ name = "burn-import"
readme = "README.md"
repository = "https://github.com/burn-rs/burn/tree/main/burn-import"

version = "0.6.0"
version = "0.7.0"

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

[dependencies]
burn = {path = "../burn", version = "0.6.0"}
burn-ndarray = {path = "../burn-ndarray", version = "0.6.0"}
burn = {path = "../burn", version = "0.7.0"}
burn-ndarray = {path = "../burn-ndarray", version = "0.7.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/Apache-2.0"
name = "burn-ndarray"
readme = "README.md"
repository = "https://github.com/burn-rs/burn/tree/main/burn-ndarray"
version = "0.6.0"
version = "0.7.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.6.0", features = ["export_tests"], optional = true}
burn-common = {path = "../burn-common", version = "0.6.0", default-features = false}
burn-tensor = {path = "../burn-tensor", version = "0.6.0", default-features = false, features = ["export_tests"]}
burn-autodiff = {path = "../burn-autodiff", version = "0.7.0", features = ["export_tests"], optional = true}
burn-common = {path = "../burn-common", version = "0.7.0", default-features = false}
burn-tensor = {path = "../burn-tensor", version = "0.7.0", default-features = false, features = ["export_tests"]}


matrixmultiply = {version = "0.3.6", default-features = false}
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 @@ -9,13 +9,13 @@ name = "burn-no-std-tests"
readme = "README.md"
repository = "https://github.com/burn-rs/burn/tree/main/burn-no-std-tests"

version = "0.6.0"
version = "0.7.0"

[dependencies]

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

burn = {path = "../burn", version = "0.6.0", default-features = false}
burn-ndarray = {path = "../burn-ndarray", version = "0.6.0", default-features = false}
burn = {path = "../burn", version = "0.7.0", default-features = false}
burn-ndarray = {path = "../burn-ndarray", version = "0.7.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,13 +8,13 @@ license = "MIT/Apache-2.0"
name = "burn-tch"
readme = "README.md"
repository = "https://github.com/burn-rs/burn/tree/main/burn-tch"
version = "0.6.0"
version = "0.7.0"

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

[dependencies]
burn-tensor = {path = "../burn-tensor", version = "0.6.0"}
burn-tensor = {path = "../burn-tensor", version = "0.7.0"}
libc = "0.2.0"

half = {workspace = true, features = ["std"]}
Expand All @@ -29,9 +29,9 @@ tch = {version = "0.11.0"}
tch = {version = "0.11.0", default-features = false} # Disables torch downloading

[dev-dependencies]
burn-autodiff = {path = "../burn-autodiff", version = "0.6.0", default-features = false, features = [
burn-autodiff = {path = "../burn-autodiff", version = "0.7.0", default-features = false, features = [
"export_tests",
]}
burn-tensor = {path = "../burn-tensor", version = "0.6.0", default-features = false, features = [
burn-tensor = {path = "../burn-tensor", version = "0.7.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
@@ -1,6 +1,6 @@
[package]
name = "burn-tensor-testgen"
version = "0.6.0"
version = "0.7.0"
authors = ["nathanielsimard <[email protected]>"]
description = "Burn tensor test gen crate."
repository = "https://github.com/burn-rs/burn/tree/main/burn-tensor-testgen"
Expand Down
4 changes: 2 additions & 2 deletions burn-tensor/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ license = "MIT/Apache-2.0"
name = "burn-tensor"
readme = "README.md"
repository = "https://github.com/burn-rs/burn/tree/main/burn-tensor"
version = "0.6.0"
version = "0.7.0"

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

[dependencies]
burn-tensor-testgen = {path = "../burn-tensor-testgen", version = "0.6.0", optional = true}
burn-tensor-testgen = {path = "../burn-tensor-testgen", version = "0.7.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
@@ -1,6 +1,6 @@
[package]
name = "burn-train"
version = "0.6.0"
version = "0.7.0"
authors = ["nathanielsimard <[email protected]>"]
description = "Training crate for burn"
repository = "https://github.com/burn-rs/burn/tree/main/burn-train"
Expand All @@ -12,7 +12,7 @@ license = "MIT/Apache-2.0"
edition = "2021"

[dependencies]
burn-core = { path = "../burn-core", version = "0.6.0" }
burn-core = { path = "../burn-core", version = "0.7.0" }

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

[dev-dependencies]
burn-ndarray = { path ="../burn-ndarray", version = "0.6.0" }
burn-ndarray = { path ="../burn-ndarray", version = "0.7.0" }
6 changes: 3 additions & 3 deletions burn/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ name = "burn"
readme = "README.md"
repository = "https://github.com/burn-rs/burn"

version = "0.6.0"
version = "0.7.0"

[features]
default = ["std", "train"]
Expand All @@ -23,5 +23,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.6.0", default-features = false}
burn-train = {path = "../burn-train", version = "0.6.0", optional = true}
burn-core = {path = "../burn-core", version = "0.7.0", default-features = false}
burn-train = {path = "../burn-train", version = "0.7.0", optional = true}

0 comments on commit 29eecd6

Please sign in to comment.