From 6d140a5af55246f7e7c13c0b9b344a3e1d8168c2 Mon Sep 17 00:00:00 2001 From: "webb-spider[bot]" <182531479+webb-spider[bot]@users.noreply.github.com> Date: Wed, 23 Oct 2024 16:42:30 +0300 Subject: [PATCH] chore: release (#362) Co-authored-by: webb-spider[bot] <182531479+webb-spider[bot]@users.noreply.github.com> Co-authored-by: shekohex --- .github/workflows/build-setup.yml | 7 +++++++ Cargo.lock | 4 ++-- Cargo.toml | 4 ++-- blueprint-metadata/CHANGELOG.md | 6 ++++++ blueprint-metadata/Cargo.toml | 2 +- blueprint-test-utils/CHANGELOG.md | 6 ++++++ cli/CHANGELOG.md | 6 ++++++ cli/Cargo.toml | 2 +- sdk/Cargo.toml | 2 +- 9 files changed, 32 insertions(+), 7 deletions(-) create mode 100644 .github/workflows/build-setup.yml diff --git a/.github/workflows/build-setup.yml b/.github/workflows/build-setup.yml new file mode 100644 index 00000000..5af43966 --- /dev/null +++ b/.github/workflows/build-setup.yml @@ -0,0 +1,7 @@ +# This file is used to install the Foundry toolchain and verify the installation. + +- name: Install Foundry + uses: foundry-rs/foundry-toolchain@v1 + +- name: Verify Forge installation + run: forge --version diff --git a/Cargo.lock b/Cargo.lock index d2181a46..e7632c5e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1959,7 +1959,7 @@ dependencies = [ [[package]] name = "blueprint-metadata" -version = "0.1.2" +version = "0.1.3" dependencies = [ "cargo_metadata", "fs2", @@ -2228,7 +2228,7 @@ dependencies = [ [[package]] name = "cargo-tangle" -version = "0.1.2" +version = "0.2.0" dependencies = [ "alloy-json-abi", "alloy-network", diff --git a/Cargo.toml b/Cargo.toml index 05d09a2d..11e091db 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -54,8 +54,8 @@ periodic-web-poller-blueprint = { path = "./blueprints/periodic-web-poller", def gadget-blueprint-proc-macro = { path = "./macros/blueprint-proc-macro", default-features = false, version = "0.1.2" } gadget-blueprint-proc-macro-core = { path = "./macros/blueprint-proc-macro-core", default-features = false, version = "0.1.2" } gadget-context-derive = { path = "./macros/context-derive", default-features = false, version = "0.1.1" } -blueprint-metadata = { path = "./blueprint-metadata", default-features = false, version = "0.1.2" } -cargo-tangle = { path = "./cli", version = "0.1.2" } +blueprint-metadata = { path = "./blueprint-metadata", default-features = false, version = "0.1.3" } +cargo-tangle = { path = "./cli", version = "0.2.0" } cargo_metadata = { version = "0.18.1" } # Tangle-related dependencies diff --git a/blueprint-metadata/CHANGELOG.md b/blueprint-metadata/CHANGELOG.md index 0535be06..d1e2eec1 100644 --- a/blueprint-metadata/CHANGELOG.md +++ b/blueprint-metadata/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.1.3](https://github.com/tangle-network/gadget/compare/blueprint-metadata-v0.1.2...blueprint-metadata-v0.1.3) - 2024-10-23 + +### Fixed + +- *(sdk)* updated keystore support and fixes ([#368](https://github.com/tangle-network/gadget/pull/368)) + ## [0.1.2](https://github.com/tangle-network/gadget/compare/blueprint-metadata-v0.1.1...blueprint-metadata-v0.1.2) - 2024-09-24 ### Other diff --git a/blueprint-metadata/Cargo.toml b/blueprint-metadata/Cargo.toml index 007c2e99..a0db0607 100644 --- a/blueprint-metadata/Cargo.toml +++ b/blueprint-metadata/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "blueprint-metadata" -version = "0.1.2" +version = "0.1.3" description = "A build dependency for generating metadata for Blueprint at compile time." authors.workspace = true edition.workspace = true diff --git a/blueprint-test-utils/CHANGELOG.md b/blueprint-test-utils/CHANGELOG.md index 6bc75701..c6eff9f8 100644 --- a/blueprint-test-utils/CHANGELOG.md +++ b/blueprint-test-utils/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.1.1](https://github.com/tangle-network/gadget/releases/tag/blueprint-test-utils-v0.1.1) - 2024-10-23 + +### Fixed + +- *(sdk)* updated keystore support and fixes ([#368](https://github.com/tangle-network/gadget/pull/368)) + ## [0.1.1](https://github.com/tangle-network/gadget/releases/tag/blueprint-test-utils-v0.1.1) - 2024-09-30 ### Other diff --git a/cli/CHANGELOG.md b/cli/CHANGELOG.md index 9514bebb..53961e9b 100644 --- a/cli/CHANGELOG.md +++ b/cli/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.2.0](https://github.com/tangle-network/gadget/compare/cargo-tangle-v0.1.2...cargo-tangle-v0.2.0) - 2024-10-23 + +### Fixed + +- *(sdk)* updated keystore support and fixes ([#368](https://github.com/tangle-network/gadget/pull/368)) + ## [0.1.2](https://github.com/tangle-network/gadget/releases/tag/cargo-tangle-v0.1.2) - 2024-09-30 ### Other diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 5278e770..b56cc668 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cargo-tangle" -version = "0.1.2" +version = "0.2.0" description = "A command-line tool to create and deploy blueprints on Tangle Network" authors.workspace = true edition.workspace = true diff --git a/sdk/Cargo.toml b/sdk/Cargo.toml index 7d56376c..744c5bb7 100644 --- a/sdk/Cargo.toml +++ b/sdk/Cargo.toml @@ -159,4 +159,4 @@ wasm = [ ] # Randomness -getrandom = ["dep:getrandom", "rand/getrandom"] \ No newline at end of file +getrandom = ["dep:getrandom", "rand/getrandom"]