From 9d8b9b6e72030c9bd67c8a166470b6318a288d77 Mon Sep 17 00:00:00 2001 From: "webb-spider[bot]" <182531479+webb-spider[bot]@users.noreply.github.com> Date: Thu, 24 Oct 2024 13:25:16 +0300 Subject: [PATCH] chore: release (#387) Co-authored-by: webb-spider[bot] <182531479+webb-spider[bot]@users.noreply.github.com> Co-authored-by: Shady Khalifa --- Cargo.lock | 12 ++++++------ Cargo.toml | 12 ++++++------ blueprint-metadata/CHANGELOG.md | 6 ++++++ blueprint-metadata/Cargo.toml | 2 +- .../contracts/lib/forge-std | 2 +- .../incredible-squaring/contracts/lib/forge-std | 2 +- .../incredible-squaring/contracts/lib/tnt-core | 2 +- cli/CHANGELOG.md | 10 ++++++++++ cli/Cargo.toml | 2 +- macros/blueprint-proc-macro-core/CHANGELOG.md | 6 ++++++ macros/blueprint-proc-macro-core/Cargo.toml | 2 +- macros/blueprint-proc-macro/CHANGELOG.md | 6 ++++++ macros/blueprint-proc-macro/Cargo.toml | 2 +- macros/context-derive/CHANGELOG.md | 6 ++++++ macros/context-derive/Cargo.toml | 2 +- macros/playground/Cargo.toml | 2 +- macros/playground/src/lib.rs | 3 +-- sdk/CHANGELOG.md | 10 ++++++++++ sdk/Cargo.toml | 2 +- 19 files changed, 67 insertions(+), 24 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 41c5dc6b..f00f692d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1958,7 +1958,7 @@ dependencies = [ [[package]] name = "blueprint-metadata" -version = "0.1.4" +version = "0.1.5" dependencies = [ "cargo_metadata", "fs2", @@ -2227,7 +2227,7 @@ dependencies = [ [[package]] name = "cargo-tangle" -version = "0.1.3" +version = "0.2.0" dependencies = [ "alloy-json-abi", "alloy-network", @@ -4678,7 +4678,7 @@ dependencies = [ [[package]] name = "gadget-blueprint-proc-macro" -version = "0.2.0" +version = "0.2.1" dependencies = [ "async-trait", "gadget-blueprint-proc-macro-core", @@ -4695,7 +4695,7 @@ dependencies = [ [[package]] name = "gadget-blueprint-proc-macro-core" -version = "0.1.3" +version = "0.1.4" dependencies = [ "cid", "ethereum-types", @@ -4718,7 +4718,7 @@ dependencies = [ [[package]] name = "gadget-context-derive" -version = "0.1.1" +version = "0.1.2" dependencies = [ "alloy-network", "alloy-provider", @@ -4759,7 +4759,7 @@ dependencies = [ [[package]] name = "gadget-sdk" -version = "0.2.0" +version = "0.2.1" dependencies = [ "alloy-contract", "alloy-network", diff --git a/Cargo.toml b/Cargo.toml index e2345cab..4c0d974c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -46,16 +46,16 @@ broken_intra_doc_links = "deny" gadget-io = { version = "0.0.3", path = "./gadget-io", default-features = false } blueprint-manager = { version = "0.1.1", path = "./blueprint-manager" } blueprint-test-utils = { path = "./blueprint-test-utils" } -gadget-sdk = { path = "./sdk", default-features = false, version = "0.2.0" } +gadget-sdk = { path = "./sdk", default-features = false, version = "0.2.1" } incredible-squaring-blueprint-eigenlayer = { path = "./blueprints/incredible-squaring-eigenlayer", default-features = false, version = "0.1.1" } incredible-squaring-aggregator = { path = "./blueprints/incredible-squaring-eigenlayer/aggregator", default-features = false, version = "0.1.1" } periodic-web-poller-blueprint = { path = "./blueprints/periodic-web-poller", default-features = false, version = "0.1.1" } -gadget-blueprint-proc-macro = { path = "./macros/blueprint-proc-macro", default-features = false, version = "0.2.0" } -gadget-blueprint-proc-macro-core = { path = "./macros/blueprint-proc-macro-core", default-features = false, version = "0.1.3" } -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.4" } -cargo-tangle = { path = "./cli", version = "0.1.3" } +gadget-blueprint-proc-macro = { path = "./macros/blueprint-proc-macro", default-features = false, version = "0.2.1" } +gadget-blueprint-proc-macro-core = { path = "./macros/blueprint-proc-macro-core", default-features = false, version = "0.1.4" } +gadget-context-derive = { path = "./macros/context-derive", default-features = false, version = "0.1.2" } +blueprint-metadata = { path = "./blueprint-metadata", default-features = false, version = "0.1.5" } +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 d1e2eec1..7db8f2c1 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.5](https://github.com/tangle-network/gadget/compare/blueprint-metadata-v0.1.4...blueprint-metadata-v0.1.5) - 2024-10-24 + +### Other + +- updated the following local packages: gadget-blueprint-proc-macro-core + ## [0.1.3](https://github.com/tangle-network/gadget/compare/blueprint-metadata-v0.1.2...blueprint-metadata-v0.1.3) - 2024-10-23 ### Fixed diff --git a/blueprint-metadata/Cargo.toml b/blueprint-metadata/Cargo.toml index 04374a0d..71ae8d23 100644 --- a/blueprint-metadata/Cargo.toml +++ b/blueprint-metadata/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "blueprint-metadata" -version = "0.1.4" +version = "0.1.5" description = "A build dependency for generating metadata for Blueprint at compile time." authors.workspace = true edition.workspace = true diff --git a/blueprints/incredible-squaring-eigenlayer/contracts/lib/forge-std b/blueprints/incredible-squaring-eigenlayer/contracts/lib/forge-std index 035de35f..1de6eecf 160000 --- a/blueprints/incredible-squaring-eigenlayer/contracts/lib/forge-std +++ b/blueprints/incredible-squaring-eigenlayer/contracts/lib/forge-std @@ -1 +1 @@ -Subproject commit 035de35f5e366c8d6ed142aec4ccb57fe2dd87d4 +Subproject commit 1de6eecf821de7fe2c908cc48d3ab3dced20717f diff --git a/blueprints/incredible-squaring/contracts/lib/forge-std b/blueprints/incredible-squaring/contracts/lib/forge-std index 035de35f..1de6eecf 160000 --- a/blueprints/incredible-squaring/contracts/lib/forge-std +++ b/blueprints/incredible-squaring/contracts/lib/forge-std @@ -1 +1 @@ -Subproject commit 035de35f5e366c8d6ed142aec4ccb57fe2dd87d4 +Subproject commit 1de6eecf821de7fe2c908cc48d3ab3dced20717f diff --git a/blueprints/incredible-squaring/contracts/lib/tnt-core b/blueprints/incredible-squaring/contracts/lib/tnt-core index fad7030f..c1fa9c7c 160000 --- a/blueprints/incredible-squaring/contracts/lib/tnt-core +++ b/blueprints/incredible-squaring/contracts/lib/tnt-core @@ -1 +1 @@ -Subproject commit fad7030fe53ea5d4a7576316880f5416fe656ee9 +Subproject commit c1fa9c7c3c5891aab9bd25002a434d93c54942cd diff --git a/cli/CHANGELOG.md b/cli/CHANGELOG.md index bbe1aba9..2634cf47 100644 --- a/cli/CHANGELOG.md +++ b/cli/CHANGELOG.md @@ -7,6 +7,16 @@ 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.3...cargo-tangle-v0.2.0) - 2024-10-24 + +### Added + +- *(cargo-tangle)* [**breaking**] rename "gadget" to "blueprint" ([#384](https://github.com/tangle-network/gadget/pull/384)) + +### Other + +- Event Flows for Tangle ([#363](https://github.com/tangle-network/gadget/pull/363)) + ## [0.1.3](https://github.com/tangle-network/gadget/compare/cargo-tangle-v0.1.2...cargo-tangle-v0.1.3) - 2024-10-23 ### Added diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 89951517..b56cc668 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cargo-tangle" -version = "0.1.3" +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/macros/blueprint-proc-macro-core/CHANGELOG.md b/macros/blueprint-proc-macro-core/CHANGELOG.md index ec6736c2..e22432e6 100644 --- a/macros/blueprint-proc-macro-core/CHANGELOG.md +++ b/macros/blueprint-proc-macro-core/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.1.4](https://github.com/tangle-network/gadget/compare/gadget-blueprint-proc-macro-core-v0.1.3...gadget-blueprint-proc-macro-core-v0.1.4) - 2024-10-24 + +### Other + +- Event Flows for Tangle ([#363](https://github.com/tangle-network/gadget/pull/363)) + ## [0.1.3](https://github.com/tangle-network/gadget/compare/gadget-blueprint-proc-macro-core-v0.1.2...gadget-blueprint-proc-macro-core-v0.1.3) - 2024-10-23 ### Other diff --git a/macros/blueprint-proc-macro-core/Cargo.toml b/macros/blueprint-proc-macro-core/Cargo.toml index 7a7c7673..fd621338 100644 --- a/macros/blueprint-proc-macro-core/Cargo.toml +++ b/macros/blueprint-proc-macro-core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "gadget-blueprint-proc-macro-core" -version = "0.1.3" +version = "0.1.4" authors.workspace = true edition.workspace = true license.workspace = true diff --git a/macros/blueprint-proc-macro/CHANGELOG.md b/macros/blueprint-proc-macro/CHANGELOG.md index 7633d174..06b2c1dc 100644 --- a/macros/blueprint-proc-macro/CHANGELOG.md +++ b/macros/blueprint-proc-macro/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.2.1](https://github.com/tangle-network/gadget/compare/gadget-blueprint-proc-macro-v0.2.0...gadget-blueprint-proc-macro-v0.2.1) - 2024-10-24 + +### Other + +- Event Flows for Tangle ([#363](https://github.com/tangle-network/gadget/pull/363)) + ## [0.2.0](https://github.com/tangle-network/gadget/compare/gadget-blueprint-proc-macro-v0.1.2...gadget-blueprint-proc-macro-v0.2.0) - 2024-10-23 ### Added diff --git a/macros/blueprint-proc-macro/Cargo.toml b/macros/blueprint-proc-macro/Cargo.toml index 53c89beb..40575228 100644 --- a/macros/blueprint-proc-macro/Cargo.toml +++ b/macros/blueprint-proc-macro/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "gadget-blueprint-proc-macro" -version = "0.2.0" +version = "0.2.1" authors.workspace = true edition.workspace = true license.workspace = true diff --git a/macros/context-derive/CHANGELOG.md b/macros/context-derive/CHANGELOG.md index bdd2b0ef..dfa08acb 100644 --- a/macros/context-derive/CHANGELOG.md +++ b/macros/context-derive/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.1.2](https://github.com/tangle-network/gadget/compare/gadget-context-derive-v0.1.1...gadget-context-derive-v0.1.2) - 2024-10-24 + +### Other + +- updated the following local packages: gadget-sdk + ## [0.1.1](https://github.com/tangle-network/gadget/compare/gadget-context-derive-v0.1.0...gadget-context-derive-v0.1.1) - 2024-09-30 ### Added diff --git a/macros/context-derive/Cargo.toml b/macros/context-derive/Cargo.toml index 10e59cd4..7753d4da 100644 --- a/macros/context-derive/Cargo.toml +++ b/macros/context-derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "gadget-context-derive" -version = "0.1.1" +version = "0.1.2" authors.workspace = true edition.workspace = true license.workspace = true diff --git a/macros/playground/Cargo.toml b/macros/playground/Cargo.toml index a9037a5d..74fbd3bd 100644 --- a/macros/playground/Cargo.toml +++ b/macros/playground/Cargo.toml @@ -31,4 +31,4 @@ serde_json = { workspace = true } tokio = { workspace = true } [build-dependencies] -blueprint-metadata = { workspace = true } \ No newline at end of file +blueprint-metadata = { workspace = true } diff --git a/macros/playground/src/lib.rs b/macros/playground/src/lib.rs index 543eb8a1..322e8954 100644 --- a/macros/playground/src/lib.rs +++ b/macros/playground/src/lib.rs @@ -323,8 +323,7 @@ mod tests { let task0 = async move { MultiJobRunner::new(None) - .with_job() - .finish(job) + .job(job) .run() .await .expect("Job failed"); diff --git a/sdk/CHANGELOG.md b/sdk/CHANGELOG.md index 872765d3..90cf9e5a 100644 --- a/sdk/CHANGELOG.md +++ b/sdk/CHANGELOG.md @@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.2.1](https://github.com/tangle-network/gadget/compare/gadget-sdk-v0.2.0...gadget-sdk-v0.2.1) - 2024-10-24 + +### Added + +- *(gadget-sdk)* improve `MultiJobRunner` builder ([#382](https://github.com/tangle-network/gadget/pull/382)) + +### Other + +- Event Flows for Tangle ([#363](https://github.com/tangle-network/gadget/pull/363)) + ## [0.2.0](https://github.com/tangle-network/gadget/compare/gadget-sdk-v0.1.1...gadget-sdk-v0.2.0) - 2024-10-23 ### Added diff --git a/sdk/Cargo.toml b/sdk/Cargo.toml index cd716fa4..000fdde9 100644 --- a/sdk/Cargo.toml +++ b/sdk/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "gadget-sdk" -version = "0.2.0" +version = "0.2.1" authors.workspace = true edition.workspace = true homepage.workspace = true