diff --git a/backend-comparison/Cargo.toml b/backend-comparison/Cargo.toml index ee5244cce7..5ae5fbc82b 100644 --- a/backend-comparison/Cargo.toml +++ b/backend-comparison/Cargo.toml @@ -7,7 +7,7 @@ license = "MIT OR Apache-2.0" name = "backend-comparison" readme = "README.md" repository = "https://github.com/tracel-ai/burn/tree/main/backend-comparison" -version = "0.11.1" +version = "0.12.0" [features] default = ["std"] @@ -28,7 +28,7 @@ wgpu-fusion = ["burn/wgpu", "burn/fusion"] burn = { path = "../burn" } derive-new = { workspace = true } rand = { workspace = true } -burn-common = { path = "../burn-common", version = "0.11.1" } +burn-common = { path = "../burn-common", version = "0.12.0" } serde_json = { workspace = true } dirs = "5.0.1" diff --git a/burn-autodiff/Cargo.toml b/burn-autodiff/Cargo.toml index 980aec4793..61db80ee1b 100644 --- a/burn-autodiff/Cargo.toml +++ b/burn-autodiff/Cargo.toml @@ -8,16 +8,16 @@ license = "MIT OR Apache-2.0" name = "burn-autodiff" readme = "README.md" repository = "https://github.com/tracel-ai/burn/tree/main/burn-autodiff" -version = "0.11.1" +version = "0.12.0" [features] default = ["export_tests"] export_tests = ["burn-tensor-testgen"] [dependencies] -burn-common = { path = "../burn-common", version = "0.11.1" } -burn-tensor = { path = "../burn-tensor", version = "0.11.1", default-features = false } -burn-tensor-testgen = { path = "../burn-tensor-testgen", version = "0.11.1", optional = true } +burn-common = { path = "../burn-common", version = "0.12.0" } +burn-tensor = { path = "../burn-tensor", version = "0.12.0", default-features = false } +burn-tensor-testgen = { path = "../burn-tensor-testgen", version = "0.12.0", optional = true } derive-new = { workspace = true } spin = { workspace = true } diff --git a/burn-book/src/basic-workflow/model.md b/burn-book/src/basic-workflow/model.md index 98fcbc5ae8..720ddc282d 100644 --- a/burn-book/src/basic-workflow/model.md +++ b/burn-book/src/basic-workflow/model.md @@ -11,7 +11,7 @@ version = "0.1.0" edition = "2021" [dependencies] -burn = { version = "0.11.1", features=["train", "wgpu"]} +burn = { version = "0.12.0", features=["train", "wgpu"]} # Serialization serde = "1" diff --git a/burn-candle/Cargo.toml b/burn-candle/Cargo.toml index 02698c2187..f1196f3b27 100644 --- a/burn-candle/Cargo.toml +++ b/burn-candle/Cargo.toml @@ -8,7 +8,7 @@ license = "MIT OR Apache-2.0" name = "burn-candle" readme = "README.md" repository = "https://github.com/tracel-ai/burn/tree/main/burn-candle" -version = "0.11.1" +version = "0.12.0" [features] default = ["std"] @@ -18,18 +18,18 @@ accelerate = ["candle-core/accelerate"] [dependencies] derive-new = { workspace = true } -burn-tensor = { path = "../burn-tensor", version = "0.11.1", default-features = false } +burn-tensor = { path = "../burn-tensor", version = "0.12.0", default-features = false } half = { workspace = true } candle-core = { version = "0.3.1" } [dev-dependencies] -burn-autodiff = { path = "../burn-autodiff", version = "0.11.1", default-features = false, features = [ +burn-autodiff = { path = "../burn-autodiff", version = "0.12.0", default-features = false, features = [ "export_tests", ] } -burn-tch = { path = "../burn-tch", version = "0.11.1", default-features = false, features = [ +burn-tch = { path = "../burn-tch", version = "0.12.0", default-features = false, features = [ ] } -burn-tensor = { path = "../burn-tensor", version = "0.11.1", default-features = false, features = [ +burn-tensor = { path = "../burn-tensor", version = "0.12.0", default-features = false, features = [ "export_tests", ] } diff --git a/burn-common/Cargo.toml b/burn-common/Cargo.toml index 0f0f1d52f4..f93b10ac48 100644 --- a/burn-common/Cargo.toml +++ b/burn-common/Cargo.toml @@ -8,7 +8,7 @@ license = "MIT OR Apache-2.0" name = "burn-common" readme = "README.md" repository = "https://github.com/tracel-ai/burn/tree/main/burn-common" -version = "0.11.1" +version = "0.12.0" [features] default = ["std"] diff --git a/burn-compute/Cargo.toml b/burn-compute/Cargo.toml index 7aa9bc4680..0f89d7c95f 100644 --- a/burn-compute/Cargo.toml +++ b/burn-compute/Cargo.toml @@ -8,7 +8,7 @@ license = "MIT OR Apache-2.0" name = "burn-compute" readme = "README.md" repository = "https://github.com/tracel-ai/burn/tree/main/burn-compute" -version = "0.11.1" +version = "0.12.0" [features] default = [ @@ -25,7 +25,7 @@ channel-mpsc = [] # Assume std storage-bytes = [] [dependencies] -burn-common = { path = "../burn-common", version = "0.11.1", default-features = false } +burn-common = { path = "../burn-common", version = "0.12.0", default-features = false } derive-new = { workspace = true } spin = { workspace = true } log = { workspace = true } diff --git a/burn-core/Cargo.toml b/burn-core/Cargo.toml index 97396b4776..88c9ad53c7 100644 --- a/burn-core/Cargo.toml +++ b/burn-core/Cargo.toml @@ -8,7 +8,7 @@ license = "MIT OR Apache-2.0" name = "burn-core" readme = "README.md" repository = "https://github.com/tracel-ai/burn/tree/main/burn-core" -version = "0.11.1" +version = "0.12.0" [features] default = [ @@ -73,18 +73,18 @@ 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.11.1", default-features = false } -burn-dataset = { path = "../burn-dataset", version = "0.11.1", optional = true, default-features = false } -burn-derive = { path = "../burn-derive", version = "0.11.1" } -burn-tensor = { path = "../burn-tensor", version = "0.11.1", default-features = false } +burn-common = { path = "../burn-common", version = "0.12.0", default-features = false } +burn-dataset = { path = "../burn-dataset", version = "0.12.0", optional = true, default-features = false } +burn-derive = { path = "../burn-derive", version = "0.12.0" } +burn-tensor = { path = "../burn-tensor", version = "0.12.0", default-features = false } # Backends -burn-ndarray = { path = "../burn-ndarray", version = "0.11.1", optional = true, default-features = false } -burn-wgpu = { path = "../burn-wgpu", version = "0.11.1", optional = true } -burn-autodiff = { path = "../burn-autodiff", version = "0.11.1", optional = true } -burn-fusion = { path = "../burn-fusion", version = "0.11.1", optional = true } -burn-tch = { path = "../burn-tch", version = "0.11.1", optional = true } -burn-candle = { path = "../burn-candle", version = "0.11.1", optional = true } +burn-ndarray = { path = "../burn-ndarray", version = "0.12.0", optional = true, default-features = false } +burn-wgpu = { path = "../burn-wgpu", version = "0.12.0", optional = true } +burn-autodiff = { path = "../burn-autodiff", version = "0.12.0", optional = true } +burn-fusion = { path = "../burn-fusion", version = "0.12.0", optional = true } +burn-tch = { path = "../burn-tch", version = "0.12.0", optional = true } +burn-candle = { path = "../burn-candle", version = "0.12.0", optional = true } derive-new = { workspace = true } libm = { workspace = true } @@ -107,9 +107,9 @@ serde_json = { workspace = true, features = ["alloc"] } #Default enables std [dev-dependencies] tempfile = { workspace = true } -burn-dataset = { path = "../burn-dataset", version = "0.11.1", features = [ +burn-dataset = { path = "../burn-dataset", version = "0.12.0", features = [ "fake", ] } -burn-ndarray = { path = "../burn-ndarray", version = "0.11.1", default-features = false } -burn-autodiff = { path = "../burn-autodiff", version = "0.11.1" } +burn-ndarray = { path = "../burn-ndarray", version = "0.12.0", default-features = false } +burn-autodiff = { path = "../burn-autodiff", version = "0.12.0" } diff --git a/burn-dataset/Cargo.toml b/burn-dataset/Cargo.toml index fdd98d6c27..cdcb7b17f9 100644 --- a/burn-dataset/Cargo.toml +++ b/burn-dataset/Cargo.toml @@ -8,7 +8,7 @@ license = "MIT OR Apache-2.0" name = "burn-dataset" readme = "README.md" repository = "https://github.com/tracel-ai/burn/tree/main/burn-dataset" -version = "0.11.1" +version = "0.12.0" [features] default = ["sqlite-bundled"] diff --git a/burn-derive/Cargo.toml b/burn-derive/Cargo.toml index 5f31925c45..d1b356d9fb 100644 --- a/burn-derive/Cargo.toml +++ b/burn-derive/Cargo.toml @@ -8,7 +8,7 @@ license = "MIT OR Apache-2.0" name = "burn-derive" readme = "README.md" repository = "https://github.com/tracel-ai/burn/tree/main/burn-derive" -version = "0.11.1" +version = "0.12.0" [lib] proc-macro = true diff --git a/burn-fusion/Cargo.toml b/burn-fusion/Cargo.toml index b88ec976c8..028b646469 100644 --- a/burn-fusion/Cargo.toml +++ b/burn-fusion/Cargo.toml @@ -8,15 +8,15 @@ license = "MIT OR Apache-2.0" name = "burn-fusion" readme = "README.md" repository = "https://github.com/tracel-ai/burn/tree/main/burn-fusion" -version = "0.11.1" +version = "0.12.0" [features] default = ["std"] std = [] [dependencies] -burn-tensor = {path = "../burn-tensor", version = "0.11.1", default-features = false } -burn-common = {path = "../burn-common", version = "0.11.1" } +burn-tensor = {path = "../burn-tensor", version = "0.12.0", default-features = false } +burn-common = {path = "../burn-common", version = "0.12.0" } hashbrown = { workspace = true } derive-new = {workspace = true} spin = {workspace = true} diff --git a/burn-import/Cargo.toml b/burn-import/Cargo.toml index cd062dcdd4..a1c88f1b94 100644 --- a/burn-import/Cargo.toml +++ b/burn-import/Cargo.toml @@ -10,15 +10,15 @@ name = "burn-import" readme = "README.md" repository = "https://github.com/tracel-ai/burn/tree/main/burn-import" -version = "0.11.1" +version = "0.12.0" [features] default = ["onnx"] onnx = [] [dependencies] -burn = { path = "../burn", version = "0.11.1" } -burn-ndarray = { path = "../burn-ndarray", version = "0.11.1" } +burn = { path = "../burn", version = "0.12.0" } +burn-ndarray = { path = "../burn-ndarray", version = "0.12.0" } bytemuck = { workspace = true } derive-new = { workspace = true } diff --git a/burn-import/onnx-tests/Cargo.toml b/burn-import/onnx-tests/Cargo.toml index b1de22b98d..770158a2c0 100644 --- a/burn-import/onnx-tests/Cargo.toml +++ b/burn-import/onnx-tests/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "onnx-tests" -version = "0.11.1" +version = "0.12.0" edition = "2021" license = "MIT OR Apache-2.0" diff --git a/burn-ndarray/Cargo.toml b/burn-ndarray/Cargo.toml index 94c90b4f73..1b74d7ab1c 100644 --- a/burn-ndarray/Cargo.toml +++ b/burn-ndarray/Cargo.toml @@ -8,7 +8,7 @@ license = "MIT OR Apache-2.0" name = "burn-ndarray" readme = "README.md" repository = "https://github.com/tracel-ai/burn/tree/main/burn-ndarray" -version = "0.11.1" +version = "0.12.0" [features] default = ["std"] @@ -41,11 +41,11 @@ blas-openblas-system = [ # ** Please make sure all dependencies support no_std when std is disabled ** -burn-autodiff = { path = "../burn-autodiff", version = "0.11.1", features = [ +burn-autodiff = { path = "../burn-autodiff", version = "0.12.0", features = [ "export_tests", ], optional = true } -burn-common = { path = "../burn-common", version = "0.11.1", default-features = false } -burn-tensor = { path = "../burn-tensor", version = "0.11.1", default-features = false, features = [ +burn-common = { path = "../burn-common", version = "0.12.0", default-features = false } +burn-tensor = { path = "../burn-tensor", version = "0.12.0", default-features = false, features = [ "export_tests", ] } diff --git a/burn-no-std-tests/Cargo.toml b/burn-no-std-tests/Cargo.toml index e996848b71..f352dfbf3a 100644 --- a/burn-no-std-tests/Cargo.toml +++ b/burn-no-std-tests/Cargo.toml @@ -8,13 +8,13 @@ license = "MIT OR Apache-2.0" name = "burn-no-std-tests" readme = "README.md" repository = "https://github.com/tracel-ai/burn/tree/main/burn-no-std-tests" -version = "0.11.1" +version = "0.12.0" [dependencies] # ** Please make sure all dependencies support no_std ** -burn = { path = "../burn", version = "0.11.1", default-features = false } -burn-ndarray = { path = "../burn-ndarray", version = "0.11.1", default-features = false } +burn = { path = "../burn", version = "0.12.0", default-features = false } +burn-ndarray = { path = "../burn-ndarray", version = "0.12.0", default-features = false } serde = { workspace = true } diff --git a/burn-tch/Cargo.toml b/burn-tch/Cargo.toml index 97bddd5ca7..79dde5020b 100644 --- a/burn-tch/Cargo.toml +++ b/burn-tch/Cargo.toml @@ -8,14 +8,14 @@ license = "MIT OR Apache-2.0" name = "burn-tch" readme = "README.md" repository = "https://github.com/tracel-ai/burn/tree/main/burn-tch" -version = "0.11.1" +version = "0.12.0" [features] default = [] doc = ["tch/doc-only"] [dependencies] -burn-tensor = { path = "../burn-tensor", version = "0.11.1" } +burn-tensor = { path = "../burn-tensor", version = "0.12.0" } half = { workspace = true, features = ["std"] } libc = "0.2.150" @@ -23,9 +23,9 @@ rand = { workspace = true, features = ["std"] } tch = { version = "0.14.0", features = ["download-libtorch"] } [dev-dependencies] -burn-autodiff = { path = "../burn-autodiff", version = "0.11.1", default-features = false, features = [ +burn-autodiff = { path = "../burn-autodiff", version = "0.12.0", default-features = false, features = [ "export_tests", ] } -burn-tensor = { path = "../burn-tensor", version = "0.11.1", default-features = false, features = [ +burn-tensor = { path = "../burn-tensor", version = "0.12.0", default-features = false, features = [ "export_tests", ] } diff --git a/burn-tensor-testgen/Cargo.toml b/burn-tensor-testgen/Cargo.toml index f46bc002d0..f8fe1d459f 100644 --- a/burn-tensor-testgen/Cargo.toml +++ b/burn-tensor-testgen/Cargo.toml @@ -6,7 +6,7 @@ license = "MIT OR Apache-2.0" name = "burn-tensor-testgen" readme = "README.md" repository = "https://github.com/tracel-ai/burn/tree/main/burn-tensor-testgen" -version = "0.11.1" +version = "0.12.0" [lib] proc-macro = true diff --git a/burn-tensor/Cargo.toml b/burn-tensor/Cargo.toml index 6eb296a043..716fe3e08d 100644 --- a/burn-tensor/Cargo.toml +++ b/burn-tensor/Cargo.toml @@ -8,7 +8,7 @@ license = "MIT OR Apache-2.0" name = "burn-tensor" readme = "README.md" repository = "https://github.com/tracel-ai/burn/tree/main/burn-tensor" -version = "0.11.1" +version = "0.12.0" [features] default = ["std"] @@ -18,8 +18,8 @@ std = ["rand/std", "half/std"] wasm-sync = [] [dependencies] -burn-common = { path = "../burn-common", version = "0.11.1", default-features = false } -burn-tensor-testgen = { path = "../burn-tensor-testgen", version = "0.11.1", optional = true } +burn-common = { path = "../burn-common", version = "0.12.0", default-features = false } +burn-tensor-testgen = { path = "../burn-tensor-testgen", version = "0.12.0", optional = true } derive-new = { workspace = true } half = { workspace = true } diff --git a/burn-train/Cargo.toml b/burn-train/Cargo.toml index 27dc4cc518..998a7bf593 100644 --- a/burn-train/Cargo.toml +++ b/burn-train/Cargo.toml @@ -8,7 +8,7 @@ license = "MIT OR Apache-2.0" name = "burn-train" readme = "README.md" repository = "https://github.com/tracel-ai/burn/tree/main/burn-train" -version = "0.11.1" +version = "0.12.0" [features] default = ["metrics", "tui"] @@ -16,7 +16,7 @@ metrics = ["nvml-wrapper", "sysinfo", "systemstat"] tui = ["ratatui", "crossterm"] [dependencies] -burn-core = { path = "../burn-core", version = "0.11.1", features = ["dataset"] } +burn-core = { path = "../burn-core", version = "0.12.0", features = ["dataset"] } log = { workspace = true } tracing-subscriber.workspace = true @@ -37,4 +37,4 @@ derive-new = { workspace = true } serde = { workspace = true, features = ["std", "derive"] } [dev-dependencies] -burn-ndarray = { path = "../burn-ndarray", version = "0.11.1" } +burn-ndarray = { path = "../burn-ndarray", version = "0.12.0" } diff --git a/burn-wgpu/Cargo.toml b/burn-wgpu/Cargo.toml index 05297bf802..548bf821a1 100644 --- a/burn-wgpu/Cargo.toml +++ b/burn-wgpu/Cargo.toml @@ -8,7 +8,7 @@ license = "MIT OR Apache-2.0" name = "burn-wgpu" readme = "README.md" repository = "https://github.com/tracel-ai/burn/tree/main/burn-wgpu" -version = "0.11.1" +version = "0.12.0" [features] default = ["autotune", "std"] @@ -17,9 +17,9 @@ autotune = [] fusion = ["burn-fusion"] [dependencies] -burn-common = { path = "../burn-common", version = "0.11.1" } -burn-tensor = { path = "../burn-tensor", version = "0.11.1" } -burn-fusion = { path = "../burn-fusion", version = "0.11.1", optional = true } +burn-common = { path = "../burn-common", version = "0.12.0" } +burn-tensor = { path = "../burn-tensor", version = "0.12.0" } +burn-fusion = { path = "../burn-fusion", version = "0.12.0", optional = true } bytemuck = { workspace = true } derive-new = { workspace = true } @@ -38,21 +38,21 @@ serde = { workspace = true } text_placeholder = { version = "0.5.0", features = ["struct_context"] } hashbrown = { workspace = true } -burn-compute = { path = "../burn-compute", version = "0.11.1", default-features = false, features = [ +burn-compute = { path = "../burn-compute", version = "0.12.0", default-features = false, features = [ "channel-mutex", "std", ] } [dev-dependencies] -burn-autodiff = { path = "../burn-autodiff", version = "0.11.1", default-features = false, features = [ +burn-autodiff = { path = "../burn-autodiff", version = "0.12.0", default-features = false, features = [ "export_tests", ] } -burn-tensor = { path = "../burn-tensor", version = "0.11.1", default-features = false, features = [ +burn-tensor = { path = "../burn-tensor", version = "0.12.0", default-features = false, features = [ "export_tests", ] } -burn-ndarray = { path = "../burn-ndarray", version = "0.11.1" } -burn-fusion = { path = "../burn-fusion", version = "0.11.1" } +burn-ndarray = { path = "../burn-ndarray", version = "0.12.0" } +burn-fusion = { path = "../burn-fusion", version = "0.12.0" } serial_test = "2.0.0" [[bench]] diff --git a/burn/Cargo.toml b/burn/Cargo.toml index 40e6775f1b..4c94515fe9 100644 --- a/burn/Cargo.toml +++ b/burn/Cargo.toml @@ -8,7 +8,7 @@ license = "MIT OR Apache-2.0" name = "burn" readme = "README.md" repository = "https://github.com/tracel-ai/burn" -version = "0.11.1" +version = "0.12.0" rust-version = "1.71" [features] @@ -56,8 +56,8 @@ 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.11.1", default-features = false } -burn-train = { path = "../burn-train", version = "0.11.1", optional = true, default-features = false } +burn-core = { path = "../burn-core", version = "0.12.0", default-features = false } +burn-train = { path = "../burn-train", version = "0.12.0", optional = true, default-features = false } [package.metadata.docs.rs] features = [ diff --git a/examples/custom-renderer/Cargo.toml b/examples/custom-renderer/Cargo.toml index 362c18fd3b..6920079189 100644 --- a/examples/custom-renderer/Cargo.toml +++ b/examples/custom-renderer/Cargo.toml @@ -5,7 +5,7 @@ license = "MIT OR Apache-2.0" name = "custom-renderer" description = "Example of how to render training progress outside of the tui" publish = false -version = "0.11.1" +version = "0.12.0" [dependencies] burn = {path = "../../burn", features=["autodiff", "wgpu", "train", "dataset"], default-features=false} diff --git a/examples/custom-training-loop/Cargo.toml b/examples/custom-training-loop/Cargo.toml index 4a68c7bfc6..7ce2f30bc6 100644 --- a/examples/custom-training-loop/Cargo.toml +++ b/examples/custom-training-loop/Cargo.toml @@ -4,7 +4,7 @@ edition = "2021" license = "MIT OR Apache-2.0" name = "custom-training-loop" publish = false -version = "0.11.1" +version = "0.12.0" [dependencies] burn = {path = "../../burn", features=["autodiff", "wgpu"]} diff --git a/examples/custom-wgpu-kernel/Cargo.toml b/examples/custom-wgpu-kernel/Cargo.toml index 644d58f6fd..4651733b8f 100644 --- a/examples/custom-wgpu-kernel/Cargo.toml +++ b/examples/custom-wgpu-kernel/Cargo.toml @@ -4,7 +4,7 @@ edition = "2021" license = "MIT OR Apache-2.0" name = "custom-wgpu-kernel" publish = false -version = "0.11.1" +version = "0.12.0" [dependencies] burn = {path = "../../burn", features=["autodiff", "wgpu"]} diff --git a/examples/guide/Cargo.toml b/examples/guide/Cargo.toml index ce9a7ec589..239b55eb0c 100644 --- a/examples/guide/Cargo.toml +++ b/examples/guide/Cargo.toml @@ -4,7 +4,7 @@ edition = "2021" license = "MIT OR Apache-2.0" name = "guide" publish = false -version = "0.11.1" +version = "0.12.0" [features] default = ["burn/default"] diff --git a/examples/image-classification-web/Cargo.toml b/examples/image-classification-web/Cargo.toml index 2489bca76a..10a4960fbf 100644 --- a/examples/image-classification-web/Cargo.toml +++ b/examples/image-classification-web/Cargo.toml @@ -4,7 +4,7 @@ edition = "2021" license = "MIT OR Apache-2.0" name = "image-classification-web" publish = false -version = "0.11.1" +version = "0.12.0" [lib] crate-type = ["cdylib"] @@ -14,11 +14,11 @@ default = [] half_precision = [] [dependencies] -burn = { path = "../../burn", version = "0.11.1", default-features = false, features = [ +burn = { path = "../../burn", version = "0.12.0", default-features = false, features = [ "ndarray", ] } -burn-wgpu = { path = "../../burn-wgpu", version = "0.11.1", default-features = false } -burn-candle = { path = "../../burn-candle", version = "0.11.1", default-features = false } +burn-wgpu = { path = "../../burn-wgpu", version = "0.12.0", default-features = false } +burn-candle = { path = "../../burn-candle", version = "0.12.0", default-features = false } js-sys = { workspace = true } log = { workspace = true } diff --git a/examples/mnist-inference-web/Cargo.toml b/examples/mnist-inference-web/Cargo.toml index 5eabb94a39..cf91359282 100644 --- a/examples/mnist-inference-web/Cargo.toml +++ b/examples/mnist-inference-web/Cargo.toml @@ -4,7 +4,7 @@ edition = "2021" license = "MIT OR Apache-2.0" name = "mnist-inference-web" publish = false -version = "0.11.1" +version = "0.12.0" [lib] crate-type = ["cdylib"] diff --git a/examples/mnist/Cargo.toml b/examples/mnist/Cargo.toml index bedd868c59..deaa090e41 100644 --- a/examples/mnist/Cargo.toml +++ b/examples/mnist/Cargo.toml @@ -4,7 +4,7 @@ edition = "2021" license = "MIT OR Apache-2.0" name = "mnist" publish = false -version = "0.11.1" +version = "0.12.0" [features] default = ["burn/dataset", "burn/sqlite-bundled"] diff --git a/examples/named-tensor/Cargo.toml b/examples/named-tensor/Cargo.toml index ec1c3737fa..b12325a2e1 100644 --- a/examples/named-tensor/Cargo.toml +++ b/examples/named-tensor/Cargo.toml @@ -4,7 +4,7 @@ edition = "2021" license = "MIT OR Apache-2.0" name = "named-tensor" publish = false -version = "0.11.1" +version = "0.12.0" [dependencies] burn = {path = "../../burn", features = ["experimental-named-tensor", "ndarray"]} diff --git a/examples/onnx-inference/Cargo.toml b/examples/onnx-inference/Cargo.toml index b1d4507bc5..1e55572eca 100644 --- a/examples/onnx-inference/Cargo.toml +++ b/examples/onnx-inference/Cargo.toml @@ -4,7 +4,7 @@ edition = "2021" license = "MIT OR Apache-2.0" name = "onnx-inference" publish = false -version = "0.11.1" +version = "0.12.0" [features] default = ["embedded-model"] diff --git a/examples/text-classification/Cargo.toml b/examples/text-classification/Cargo.toml index 5799ef099f..6d003410f2 100644 --- a/examples/text-classification/Cargo.toml +++ b/examples/text-classification/Cargo.toml @@ -4,7 +4,7 @@ edition = "2021" license = "MIT OR Apache-2.0" name = "text-classification" publish = false -version = "0.11.1" +version = "0.12.0" [features] default = ["burn/dataset", "burn/sqlite-bundled"] diff --git a/examples/text-generation/Cargo.toml b/examples/text-generation/Cargo.toml index b3d41b8348..39428f55ba 100644 --- a/examples/text-generation/Cargo.toml +++ b/examples/text-generation/Cargo.toml @@ -4,7 +4,7 @@ edition = "2021" license = "MIT OR Apache-2.0" name = "text-generation" publish = false -version = "0.11.1" +version = "0.12.0" [features] default = ["burn/dataset", "burn/sqlite-bundled"]