From 2f9ac54d2e0758d1590ae2817f3a126ef6446fe4 Mon Sep 17 00:00:00 2001 From: "webb-spider[bot]" <182531479+webb-spider[bot]@users.noreply.github.com> Date: Thu, 12 Dec 2024 10:07:18 -0500 Subject: [PATCH] chore: release (#535) Co-authored-by: webb-spider[bot] <182531479+webb-spider[bot]@users.noreply.github.com> --- Cargo.lock | 18 +++++++++--------- Cargo.toml | 16 ++++++++-------- blueprint-manager/CHANGELOG.md | 6 ++++++ blueprint-manager/Cargo.toml | 2 +- blueprint-metadata/CHANGELOG.md | 10 ++++++++++ blueprint-metadata/Cargo.toml | 2 +- blueprint-serde/CHANGELOG.md | 6 ++++++ blueprint-serde/Cargo.toml | 2 +- blueprint-test-utils/CHANGELOG.md | 8 ++++++++ blueprint-test-utils/Cargo.toml | 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 | 11 +++++++++++ macros/blueprint-proc-macro/Cargo.toml | 2 +- macros/context-derive/CHANGELOG.md | 7 +++++++ macros/context-derive/Cargo.toml | 2 +- sdk/CHANGELOG.md | 7 +++++++ sdk/Cargo.toml | 2 +- 20 files changed, 97 insertions(+), 26 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 55ab3bf4..5e5dfe3d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2089,7 +2089,7 @@ dependencies = [ [[package]] name = "blueprint-manager" -version = "0.2.1" +version = "0.2.2" dependencies = [ "async-trait", "auto_impl", @@ -2116,7 +2116,7 @@ dependencies = [ [[package]] name = "blueprint-metadata" -version = "0.2.0" +version = "0.2.1" dependencies = [ "cargo_metadata", "fs2", @@ -2129,7 +2129,7 @@ dependencies = [ [[package]] name = "blueprint-test-utils" -version = "0.2.1" +version = "0.3.0" dependencies = [ "alloy-contract", "alloy-primitives", @@ -2388,7 +2388,7 @@ dependencies = [ [[package]] name = "cargo-tangle" -version = "0.3.2" +version = "0.3.3" dependencies = [ "alloy-json-abi", "alloy-network", @@ -4868,7 +4868,7 @@ dependencies = [ [[package]] name = "gadget-blueprint-proc-macro" -version = "0.5.0" +version = "0.5.1" dependencies = [ "async-trait", "gadget-blueprint-proc-macro-core", @@ -4886,7 +4886,7 @@ dependencies = [ [[package]] name = "gadget-blueprint-proc-macro-core" -version = "0.3.0" +version = "0.3.1" dependencies = [ "cid", "ethereum-types", @@ -4910,7 +4910,7 @@ dependencies = [ [[package]] name = "gadget-blueprint-serde" -version = "0.3.0" +version = "0.3.1" dependencies = [ "paste", "serde", @@ -4921,7 +4921,7 @@ dependencies = [ [[package]] name = "gadget-context-derive" -version = "0.3.0" +version = "0.3.1" dependencies = [ "alloy-network", "alloy-provider", @@ -4964,7 +4964,7 @@ dependencies = [ [[package]] name = "gadget-sdk" -version = "0.6.1" +version = "0.6.2" dependencies = [ "alloy-contract", "alloy-json-abi", diff --git a/Cargo.toml b/Cargo.toml index 6466c11e..112c9013 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -45,21 +45,21 @@ broken_intra_doc_links = "deny" [workspace.dependencies] gadget-io = { version = "0.0.5", path = "./gadget-io", default-features = false } -blueprint-manager = { version = "0.2.1", path = "./blueprint-manager" } -blueprint-serde = { version = "0.3.0", path = "./blueprint-serde", package = "gadget-blueprint-serde" } +blueprint-manager = { version = "0.2.2", path = "./blueprint-manager" } +blueprint-serde = { version = "0.3.1", path = "./blueprint-serde", package = "gadget-blueprint-serde" } blueprint-test-utils = { path = "./blueprint-test-utils" } -gadget-sdk = { path = "./sdk", default-features = false, version = "0.6.1" } +gadget-sdk = { path = "./sdk", default-features = false, version = "0.6.2" } incredible-squaring-blueprint = { path = "./blueprints/incredible-squaring", default-features = false, version = "0.1.1" } incredible-squaring-blueprint-eigenlayer = { path = "./blueprints/incredible-squaring-eigenlayer", default-features = false, version = "0.1.1" } incredible-squaring-blueprint-symbiotic = { path = "./blueprints/incredible-squaring-symbiotic", default-features = false, version = "0.1.1" } blueprint-examples = { path = "./blueprints/examples", default-features = false, version = "0.1.1" } -gadget-blueprint-proc-macro = { path = "./macros/blueprint-proc-macro", default-features = false, version = "0.5.0" } -gadget-blueprint-proc-macro-core = { path = "./macros/blueprint-proc-macro-core", default-features = false, version = "0.3.0" } -gadget-context-derive = { path = "./macros/context-derive", default-features = false, version = "0.3.0" } +gadget-blueprint-proc-macro = { path = "./macros/blueprint-proc-macro", default-features = false, version = "0.5.1" } +gadget-blueprint-proc-macro-core = { path = "./macros/blueprint-proc-macro-core", default-features = false, version = "0.3.1" } +gadget-context-derive = { path = "./macros/context-derive", default-features = false, version = "0.3.1" } blueprint-build-utils = { path = "./blueprint-build-utils", default-features = false, version = "0.1.0" } -blueprint-metadata = { path = "./blueprint-metadata", default-features = false, version = "0.2.0" } -cargo-tangle = { path = "./cli", version = "0.3.2" } +blueprint-metadata = { path = "./blueprint-metadata", default-features = false, version = "0.2.1" } +cargo-tangle = { path = "./cli", version = "0.3.3" } cargo_metadata = { version = "0.18.1" } # Tangle-related dependencies diff --git a/blueprint-manager/CHANGELOG.md b/blueprint-manager/CHANGELOG.md index 925eec87..9cb01596 100644 --- a/blueprint-manager/CHANGELOG.md +++ b/blueprint-manager/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.2.2](https://github.com/tangle-network/gadget/compare/blueprint-manager-v0.2.1...blueprint-manager-v0.2.2) - 2024-12-11 + +### Other + +- Call ID Insertion and Resolution For [#520](https://github.com/tangle-network/gadget/pull/520) ([#533](https://github.com/tangle-network/gadget/pull/533)) + ## [0.2.1](https://github.com/tangle-network/gadget/compare/blueprint-manager-v0.2.0...blueprint-manager-v0.2.1) - 2024-12-04 ### Other diff --git a/blueprint-manager/Cargo.toml b/blueprint-manager/Cargo.toml index 3f003ac0..64030229 100644 --- a/blueprint-manager/Cargo.toml +++ b/blueprint-manager/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "blueprint-manager" -version = "0.2.1" +version = "0.2.2" description = "Tangle Blueprint manager and Runner" authors.workspace = true edition.workspace = true diff --git a/blueprint-metadata/CHANGELOG.md b/blueprint-metadata/CHANGELOG.md index fa9ca4e8..ea901fa0 100644 --- a/blueprint-metadata/CHANGELOG.md +++ b/blueprint-metadata/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/blueprint-metadata-v0.2.0...blueprint-metadata-v0.2.1) - 2024-12-11 + +### Fixed + +- *(blueprint-proc-macro)* fix bug where job IDs are not written in order to blueprint.json ([#542](https://github.com/tangle-network/gadget/pull/542)) + +### Other + +- Call ID Insertion and Resolution For [#520](https://github.com/tangle-network/gadget/pull/520) ([#533](https://github.com/tangle-network/gadget/pull/533)) + ## [0.2.0](https://github.com/tangle-network/gadget/compare/blueprint-metadata-v0.1.7...blueprint-metadata-v0.2.0) - 2024-11-29 ### Other diff --git a/blueprint-metadata/Cargo.toml b/blueprint-metadata/Cargo.toml index 2f7b2ead..7c8e6cf0 100644 --- a/blueprint-metadata/Cargo.toml +++ b/blueprint-metadata/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "blueprint-metadata" -version = "0.2.0" +version = "0.2.1" description = "A build dependency for generating metadata for Blueprint at compile time." authors.workspace = true edition.workspace = true diff --git a/blueprint-serde/CHANGELOG.md b/blueprint-serde/CHANGELOG.md index 55989fd2..3639074a 100644 --- a/blueprint-serde/CHANGELOG.md +++ b/blueprint-serde/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.3.1](https://github.com/tangle-network/gadget/compare/gadget-blueprint-serde-v0.3.0...gadget-blueprint-serde-v0.3.1) - 2024-12-11 + +### Other + +- update Cargo.toml dependencies + ## [0.3.0](https://github.com/tangle-network/gadget/compare/gadget-blueprint-serde-v0.2.0...gadget-blueprint-serde-v0.3.0) - 2024-11-29 ### Fixed diff --git a/blueprint-serde/Cargo.toml b/blueprint-serde/Cargo.toml index f4599851..1ab9c64c 100644 --- a/blueprint-serde/Cargo.toml +++ b/blueprint-serde/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "gadget-blueprint-serde" -version = "0.3.0" +version = "0.3.1" description = "Tangle Blueprints serde integration" authors.workspace = true edition.workspace = true diff --git a/blueprint-test-utils/CHANGELOG.md b/blueprint-test-utils/CHANGELOG.md index f3acab9a..12ae8dc6 100644 --- a/blueprint-test-utils/CHANGELOG.md +++ b/blueprint-test-utils/CHANGELOG.md @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.3.0](https://github.com/tangle-network/gadget/compare/blueprint-test-utils-v0.2.1...blueprint-test-utils-v0.3.0) - 2024-12-11 + +### Other + +- Download Tangle binary against specific hash ([#537](https://github.com/tangle-network/gadget/pull/537)) +- Call ID Insertion and Resolution For [#520](https://github.com/tangle-network/gadget/pull/520) ([#533](https://github.com/tangle-network/gadget/pull/533)) +- *(blueprint-test-utils)* [**breaking**] remove `Opts` boilerplate + ## [0.2.1](https://github.com/tangle-network/gadget/compare/blueprint-test-utils-v0.2.0...blueprint-test-utils-v0.2.1) - 2024-12-04 ### Added diff --git a/blueprint-test-utils/Cargo.toml b/blueprint-test-utils/Cargo.toml index 3824cd47..60f2d1ee 100644 --- a/blueprint-test-utils/Cargo.toml +++ b/blueprint-test-utils/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "blueprint-test-utils" -version = "0.2.1" +version = "0.3.0" description = "Tangle Blueprint test utils" authors.workspace = true edition.workspace = true diff --git a/cli/CHANGELOG.md b/cli/CHANGELOG.md index 5827e322..244260ec 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.3.3](https://github.com/tangle-network/gadget/compare/cargo-tangle-v0.3.2...cargo-tangle-v0.3.3) - 2024-12-11 + +### Added + +- *(cargo-tangle)* improve error handling ([#523](https://github.com/tangle-network/gadget/pull/523)) + +### Other + +- Download Tangle binary against specific hash ([#537](https://github.com/tangle-network/gadget/pull/537)) + ## [0.3.2](https://github.com/tangle-network/gadget/compare/cargo-tangle-v0.3.1...cargo-tangle-v0.3.2) - 2024-12-04 ### Added diff --git a/cli/Cargo.toml b/cli/Cargo.toml index be413f77..48977fc5 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cargo-tangle" -version = "0.3.2" +version = "0.3.3" 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 9d507865..44b5314d 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.3.1](https://github.com/tangle-network/gadget/compare/gadget-blueprint-proc-macro-core-v0.3.0...gadget-blueprint-proc-macro-core-v0.3.1) - 2024-12-11 + +### Fixed + +- *(blueprint-proc-macro)* fix bug where job IDs are not written in order to blueprint.json ([#542](https://github.com/tangle-network/gadget/pull/542)) + ## [0.3.0](https://github.com/tangle-network/gadget/compare/gadget-blueprint-proc-macro-core-v0.2.0...gadget-blueprint-proc-macro-core-v0.3.0) - 2024-11-29 ### Other diff --git a/macros/blueprint-proc-macro-core/Cargo.toml b/macros/blueprint-proc-macro-core/Cargo.toml index 24714150..4b5c0c64 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.3.0" +version = "0.3.1" 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 814bdcd5..d6916a61 100644 --- a/macros/blueprint-proc-macro/CHANGELOG.md +++ b/macros/blueprint-proc-macro/CHANGELOG.md @@ -7,6 +7,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.5.1](https://github.com/tangle-network/gadget/compare/gadget-blueprint-proc-macro-v0.5.0...gadget-blueprint-proc-macro-v0.5.1) - 2024-12-11 + +### Fixed + +- *(blueprint-proc-macro)* fix bug where job IDs are not written in order to blueprint.json ([#542](https://github.com/tangle-network/gadget/pull/542)) + +### Other + +- Download Tangle binary against specific hash ([#537](https://github.com/tangle-network/gadget/pull/537)) +- Call ID Insertion and Resolution For [#520](https://github.com/tangle-network/gadget/pull/520) ([#533](https://github.com/tangle-network/gadget/pull/533)) + ## [0.5.0](https://github.com/tangle-network/gadget/compare/gadget-blueprint-proc-macro-v0.4.0...gadget-blueprint-proc-macro-v0.5.0) - 2024-11-29 ### Fixed diff --git a/macros/blueprint-proc-macro/Cargo.toml b/macros/blueprint-proc-macro/Cargo.toml index 14a59dad..f57df726 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.5.0" +version = "0.5.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 cf5a50ee..1866a177 100644 --- a/macros/context-derive/CHANGELOG.md +++ b/macros/context-derive/CHANGELOG.md @@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.3.1](https://github.com/tangle-network/gadget/compare/gadget-context-derive-v0.3.0...gadget-context-derive-v0.3.1) - 2024-12-11 + +### Other + +- Download Tangle binary against specific hash ([#537](https://github.com/tangle-network/gadget/pull/537)) +- Call ID Insertion and Resolution For [#520](https://github.com/tangle-network/gadget/pull/520) ([#533](https://github.com/tangle-network/gadget/pull/533)) + ## [0.3.0](https://github.com/tangle-network/gadget/compare/gadget-context-derive-v0.2.2...gadget-context-derive-v0.3.0) - 2024-11-29 ### Added diff --git a/macros/context-derive/Cargo.toml b/macros/context-derive/Cargo.toml index 5b1d7263..c34ee953 100644 --- a/macros/context-derive/Cargo.toml +++ b/macros/context-derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "gadget-context-derive" -version = "0.3.0" +version = "0.3.1" authors.workspace = true edition.workspace = true license.workspace = true diff --git a/sdk/CHANGELOG.md b/sdk/CHANGELOG.md index a6b6992f..307144cb 100644 --- a/sdk/CHANGELOG.md +++ b/sdk/CHANGELOG.md @@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.6.2](https://github.com/tangle-network/gadget/compare/gadget-sdk-v0.6.1...gadget-sdk-v0.6.2) - 2024-12-11 + +### Other + +- Download Tangle binary against specific hash ([#537](https://github.com/tangle-network/gadget/pull/537)) +- Call ID Insertion and Resolution For [#520](https://github.com/tangle-network/gadget/pull/520) ([#533](https://github.com/tangle-network/gadget/pull/533)) + ## [0.6.1](https://github.com/tangle-network/gadget/compare/gadget-sdk-v0.6.0...gadget-sdk-v0.6.1) - 2024-12-04 ### Added diff --git a/sdk/Cargo.toml b/sdk/Cargo.toml index 72eaa8b5..0b3559df 100644 --- a/sdk/Cargo.toml +++ b/sdk/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "gadget-sdk" -version = "0.6.1" +version = "0.6.2" authors.workspace = true edition.workspace = true homepage.workspace = true