Skip to content

Commit

Permalink
Bump next version of Burn to 0.14.0 (#1618)
Browse files Browse the repository at this point in the history
  • Loading branch information
syl20bnr authored Apr 12, 2024
1 parent cf7b279 commit e303e31
Show file tree
Hide file tree
Showing 23 changed files with 104 additions and 104 deletions.
76 changes: 38 additions & 38 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ exclude = ["examples/notebook"]

[workspace.package]
edition = "2021"
version = "0.13.0"
version = "0.14.0"
readme = "README.md"
license = "MIT OR Apache-2.0"

Expand Down
4 changes: 2 additions & 2 deletions backend-comparison/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ wgpu-fusion = ["wgpu", "burn/fusion"]
[dependencies]
arboard = { workspace = true }
burn = { path = "../crates/burn", default-features = false }
burn-common = { path = "../crates/burn-common", version = "0.13.0" }
burn-wgpu = { path = "../crates/burn-wgpu", default-features = false, version = "0.13.0" }
burn-common = { path = "../crates/burn-common", version = "0.14.0" }
burn-wgpu = { path = "../crates/burn-wgpu", default-features = false, version = "0.14.0" }
clap = { workspace = true }
colored = { workspace = true }
derive-new = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion burn-book/src/basic-workflow/model.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ version = "0.1.0"
edition = "2021"

[dependencies]
burn = { version = "0.13.0", features = ["train", "wgpu", "vision"] }
burn = { version = "0.14.0", features = ["train", "wgpu", "vision"] }
```

Our goal will be to create a basic convolutional neural network used for image classification. We
Expand Down
8 changes: 4 additions & 4 deletions crates/burn-autodiff/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,15 @@ export_tests = ["burn-tensor-testgen"]
std = []

[dependencies]
burn-common = { path = "../burn-common", version = "0.13.0" }
burn-tensor = { path = "../burn-tensor", version = "0.13.0", default-features = false }
burn-tensor-testgen = { path = "../burn-tensor-testgen", version = "0.13.0", optional = true }
burn-common = { path = "../burn-common", version = "0.14.0" }
burn-tensor = { path = "../burn-tensor", version = "0.14.0", default-features = false }
burn-tensor-testgen = { path = "../burn-tensor-testgen", version = "0.14.0", optional = true }

derive-new = { workspace = true }
spin = { workspace = true }
log = { workspace = true }

[dev-dependencies]
burn-tensor = { path = "../burn-tensor", version = "0.13.0", default-features = false, features = [
burn-tensor = { path = "../burn-tensor", version = "0.14.0", default-features = false, features = [
"export_tests",
] }
Loading

0 comments on commit e303e31

Please sign in to comment.