From 4e28e2a776be0b1cf27faa02050716df77456f10 Mon Sep 17 00:00:00 2001 From: Nathaniel Simard Date: Tue, 21 Mar 2023 09:47:37 -0400 Subject: [PATCH] chore: prepare release v0.6.0 (#246) --- .github/workflows/publish.yml | 9 +++++++++ burn-autodiff/Cargo.toml | 2 +- burn-common/Cargo.toml | 2 +- burn-core/Cargo.toml | 2 +- burn-dataset/Cargo.toml | 2 +- burn-derive/Cargo.toml | 2 +- burn-ndarray/Cargo.toml | 2 +- burn-no-std-tests/Cargo.toml | 2 +- burn-tch/Cargo.toml | 2 +- burn-tensor-testgen/Cargo.toml | 2 +- burn-tensor/Cargo.toml | 2 +- burn-train/Cargo.toml | 2 +- burn/Cargo.toml | 2 +- examples/mnist-inference-web/Cargo.toml | 2 +- examples/mnist/Cargo.toml | 2 +- examples/named-tensor/Cargo.toml | 2 +- examples/text-classification/Cargo.toml | 2 +- examples/text-generation/Cargo.toml | 2 +- 18 files changed, 26 insertions(+), 17 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index ecc6813bf..05a4358c4 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -18,6 +18,12 @@ jobs: crate: burn-dataset secrets: inherit + publish-burn-common: + uses: burn-rs/burn/.github/workflows/publish-template.yml@main + with: + crate: burn-common + secrets: inherit + publish-burn-tensor-testgen: uses: burn-rs/burn/.github/workflows/publish-template.yml@main with: @@ -37,6 +43,7 @@ jobs: needs: - publish-burn-tensor - publish-burn-tensor-testgen + - publish-burn-common with: crate: burn-autodiff secrets: inherit @@ -55,6 +62,7 @@ jobs: needs: - publish-burn-tensor - publish-burn-autodiff + - publish-burn-common with: crate: burn-ndarray secrets: inherit @@ -68,6 +76,7 @@ jobs: - publish-burn-dataset - publish-burn-derive - publish-burn-ndarray + - publish-burn-common with: crate: burn-core secrets: inherit diff --git a/burn-autodiff/Cargo.toml b/burn-autodiff/Cargo.toml index 10e4fd5dc..e285dd46c 100644 --- a/burn-autodiff/Cargo.toml +++ b/burn-autodiff/Cargo.toml @@ -8,7 +8,7 @@ license = "MIT/Apache-2.0" name = "burn-autodiff" readme = "README.md" repository = "https://github.com/burn-rs/burn/tree/main/burn-autodiff" -version = "0.5.0" +version = "0.6.0" [features] default = ["export_tests"] diff --git a/burn-common/Cargo.toml b/burn-common/Cargo.toml index 3f876aae5..3f40301e7 100644 --- a/burn-common/Cargo.toml +++ b/burn-common/Cargo.toml @@ -5,7 +5,7 @@ license = "MIT/Apache-2.0" name = "burn-common" readme = "README.md" repository = "https://github.com/burn-rs/burn/tree/main/burn-common" -version = "0.5.0" +version = "0.6.0" [features] default = ["std"] diff --git a/burn-core/Cargo.toml b/burn-core/Cargo.toml index 35f630257..ea6e16678 100644 --- a/burn-core/Cargo.toml +++ b/burn-core/Cargo.toml @@ -9,7 +9,7 @@ name = "burn-core" readme = "README.md" repository = "https://github.com/burn-rs/burn/tree/main/burn-core" -version = "0.5.0" +version = "0.6.0" [features] default = ["std"] diff --git a/burn-dataset/Cargo.toml b/burn-dataset/Cargo.toml index ad9d80f55..9e86241f8 100644 --- a/burn-dataset/Cargo.toml +++ b/burn-dataset/Cargo.toml @@ -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.5.0" +version = "0.6.0" [features] default = ["fake"] diff --git a/burn-derive/Cargo.toml b/burn-derive/Cargo.toml index 899000fdb..158218193 100644 --- a/burn-derive/Cargo.toml +++ b/burn-derive/Cargo.toml @@ -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.5.0" +version = "0.6.0" [lib] proc-macro = true diff --git a/burn-ndarray/Cargo.toml b/burn-ndarray/Cargo.toml index 620b5cfec..d6475a17f 100644 --- a/burn-ndarray/Cargo.toml +++ b/burn-ndarray/Cargo.toml @@ -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.5.0" +version = "0.6.0" [features] default = ["std"] diff --git a/burn-no-std-tests/Cargo.toml b/burn-no-std-tests/Cargo.toml index 3847c41ef..ae96c7ceb 100644 --- a/burn-no-std-tests/Cargo.toml +++ b/burn-no-std-tests/Cargo.toml @@ -9,7 +9,7 @@ name = "burn-no-std-tests" readme = "README.md" repository = "https://github.com/burn-rs/burn/tree/main/burn-no-std-tests" -version = "0.5.0" +version = "0.6.0" [dependencies] diff --git a/burn-tch/Cargo.toml b/burn-tch/Cargo.toml index b2465ff99..400311556 100644 --- a/burn-tch/Cargo.toml +++ b/burn-tch/Cargo.toml @@ -8,7 +8,7 @@ license = "MIT/Apache-2.0" name = "burn-tch" readme = "README.md" repository = "https://github.com/burn-rs/burn/tree/main/burn-tch" -version = "0.5.0" +version = "0.6.0" [features] doc = ["tch/doc-only"] diff --git a/burn-tensor-testgen/Cargo.toml b/burn-tensor-testgen/Cargo.toml index cc4cd9bc4..bfaa9e392 100644 --- a/burn-tensor-testgen/Cargo.toml +++ b/burn-tensor-testgen/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "burn-tensor-testgen" -version = "0.5.0" +version = "0.6.0" authors = ["nathanielsimard "] description = "Burn tensor test gen crate." repository = "https://github.com/burn-rs/burn/tree/main/burn-tensor-testgen" diff --git a/burn-tensor/Cargo.toml b/burn-tensor/Cargo.toml index ebc3af7b6..95e3bd4d2 100644 --- a/burn-tensor/Cargo.toml +++ b/burn-tensor/Cargo.toml @@ -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.5.0" +version = "0.6.0" [features] default = ["std"] diff --git a/burn-train/Cargo.toml b/burn-train/Cargo.toml index dc3c3cb52..b857275b7 100644 --- a/burn-train/Cargo.toml +++ b/burn-train/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "burn-train" -version = "0.5.0" +version = "0.6.0" authors = ["nathanielsimard "] description = "Training crate for burn" repository = "https://github.com/burn-rs/burn/tree/main/burn-train" diff --git a/burn/Cargo.toml b/burn/Cargo.toml index 2a5f9319a..93fde5d5e 100644 --- a/burn/Cargo.toml +++ b/burn/Cargo.toml @@ -9,7 +9,7 @@ name = "burn" readme = "README.md" repository = "https://github.com/burn-rs/burn/tree/main/burn" -version = "0.5.0" +version = "0.6.0" [features] default = ["std", "train"] diff --git a/examples/mnist-inference-web/Cargo.toml b/examples/mnist-inference-web/Cargo.toml index ff2115f5f..d03493c80 100644 --- a/examples/mnist-inference-web/Cargo.toml +++ b/examples/mnist-inference-web/Cargo.toml @@ -4,7 +4,7 @@ edition = "2021" license = "MIT/Apache-2.0" name = "mnist-inference-web" publish = false -version = "0.5.0" +version = "0.6.0" [lib] crate-type = ["cdylib"] diff --git a/examples/mnist/Cargo.toml b/examples/mnist/Cargo.toml index ac48138bd..596b492b8 100644 --- a/examples/mnist/Cargo.toml +++ b/examples/mnist/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mnist" -version = "0.5.0" +version = "0.6.0" authors = ["nathanielsimard "] license = "MIT/Apache-2.0" edition = "2021" diff --git a/examples/named-tensor/Cargo.toml b/examples/named-tensor/Cargo.toml index 65d135100..456571bdf 100644 --- a/examples/named-tensor/Cargo.toml +++ b/examples/named-tensor/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "named-tensor" -version = "0.5.0" +version = "0.6.0" authors = ["nathanielsimard "] license = "MIT/Apache-2.0" edition = "2021" diff --git a/examples/text-classification/Cargo.toml b/examples/text-classification/Cargo.toml index df818be0b..010a58ea0 100644 --- a/examples/text-classification/Cargo.toml +++ b/examples/text-classification/Cargo.toml @@ -4,7 +4,7 @@ edition = "2021" license = "MIT/Apache-2.0" name = "text-classification" publish = false -version = "0.5.0" +version = "0.6.0" [features] default = [] diff --git a/examples/text-generation/Cargo.toml b/examples/text-generation/Cargo.toml index 7b89484b2..6425709fb 100644 --- a/examples/text-generation/Cargo.toml +++ b/examples/text-generation/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "text-generation" -version = "0.5.0" +version = "0.6.0" authors = ["nathanielsimard "] license = "MIT/Apache-2.0" edition = "2021"