From 90c8d46cb5816d66a198a68f509dc3c13a5250ec Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maciej=20Zieli=C5=84ski?= Date: Tue, 30 Jul 2024 13:13:43 +0200 Subject: [PATCH 1/2] Changelog and version bump for 1.4.0 --- CHANGELOG.md | 14 +++++++++++++- Cargo.lock | 13 ++++++++++++- Cargo.toml | 3 ++- justfile | 2 +- 4 files changed, 28 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6371b5e..f9dc8eb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,19 @@ Changelog for `cargo-odra`. -## [0.1.2] - 2024-XX-XX +## [0.1.4] - 2024-07-30 + +### Added + +- Tests filter with `--test` flag. + +## [0.1.3] - 2024-06-17 + +### Fixed + +- Handle empty `Odra.toml`. + +## [0.1.2] - 2024-05-23 ### Added diff --git a/Cargo.lock b/Cargo.lock index d39ef60..008fa67 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -228,13 +228,14 @@ dependencies = [ [[package]] name = "cargo-odra" -version = "0.1.3" +version = "0.1.4" dependencies = [ "cargo-generate", "cargo_toml", "chrono", "clap", "clap_complete_command", + "colored", "convert_case", "glob", "prettycli", @@ -375,6 +376,16 @@ version = "1.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0b6a852b24ab71dffc585bcb46eaf7959d175cb865a7152e35b348d1b2960422" +[[package]] +name = "colored" +version = "2.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cbf2150cce219b664a8a70df7a1f933836724b503f8a413af9365b4dcc4d90b8" +dependencies = [ + "lazy_static", + "windows-sys 0.48.0", +] + [[package]] name = "console" version = "0.15.8" diff --git a/Cargo.toml b/Cargo.toml index ac180b3..c2db181 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -10,7 +10,7 @@ description = "A cargo utility that helps to create, manage and test your smart keywords = ["wasm", "webassembly", "blockchain"] categories = ["wasm", "development-tools::cargo-plugins"] name = "cargo-odra" -version = "0.1.3" +version = "0.1.4" edition = "2021" [dependencies] @@ -29,6 +29,7 @@ thiserror = "1.0.37" ureq = { version = "2.6.2", features = ["json"] } regex = "1.7.3" clap_complete_command = "0.5.1" +colored = "2.1.0" [[bin]] name = "cargo-odra" diff --git a/justfile b/justfile index b84aacb..71a04ea 100644 --- a/justfile +++ b/justfile @@ -1,4 +1,4 @@ -DEVELOPMENT_ODRA_BRANCH := "release/1.1.0" +DEVELOPMENT_ODRA_BRANCH := "release/1.2.0" BINARYEN_VERSION := "version_116" BINARYEN_CHECKSUM := "c55b74f3109cdae97490faf089b0286d3bba926bb6ea5ed00c8c784fc53718fd" From 3cd4945127db65d7a57aa6f0281e3059d3e5e2a4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maciej=20Zieli=C5=84ski?= Date: Tue, 30 Jul 2024 13:23:13 +0200 Subject: [PATCH 2/2] Disable testing on stable. --- .github/workflows/ci-cargo-odra.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci-cargo-odra.yml b/.github/workflows/ci-cargo-odra.yml index 8e16ba9..864690b 100644 --- a/.github/workflows/ci-cargo-odra.yml +++ b/.github/workflows/ci-cargo-odra.yml @@ -34,5 +34,5 @@ jobs: - run: just install - run: just test-project-generation-on-future-odra - run: just test-workspace-generation-on-future-odra - - run: just test-project-generation-on-stable-odra - - run: just test-workspace-generation-on-stable-odra + # - run: just test-project-generation-on-stable-odra + # - run: just test-workspace-generation-on-stable-odra