From da774fa5f1be6a4f74927693a84c7aff04ee7498 Mon Sep 17 00:00:00 2001 From: "webb-spider[bot]" <182531479+webb-spider[bot]@users.noreply.github.com> Date: Sat, 16 Nov 2024 22:24:06 -0800 Subject: [PATCH] chore: release (#468) 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 | 6 ++++++ blueprint-metadata/Cargo.toml | 2 +- blueprint-serde/CHANGELOG.md | 10 ++++++++++ blueprint-serde/Cargo.toml | 2 +- blueprint-test-utils/CHANGELOG.md | 11 +++++++++++ blueprint-test-utils/Cargo.toml | 2 +- cli/CHANGELOG.md | 6 ++++++ cli/Cargo.toml | 2 +- macros/blueprint-proc-macro-core/CHANGELOG.md | 10 ++++++++++ macros/blueprint-proc-macro-core/Cargo.toml | 2 +- macros/blueprint-proc-macro/CHANGELOG.md | 10 ++++++++++ macros/blueprint-proc-macro/Cargo.toml | 2 +- macros/context-derive/CHANGELOG.md | 6 ++++++ macros/context-derive/Cargo.toml | 2 +- sdk/CHANGELOG.md | 15 +++++++++++++++ sdk/Cargo.toml | 2 +- 20 files changed, 106 insertions(+), 26 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index c41070da..881348d8 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1973,7 +1973,7 @@ dependencies = [ [[package]] name = "blueprint-manager" -version = "0.1.1" +version = "0.1.2" dependencies = [ "async-trait", "auto_impl", @@ -2000,7 +2000,7 @@ dependencies = [ [[package]] name = "blueprint-metadata" -version = "0.1.6" +version = "0.1.7" dependencies = [ "cargo_metadata", "fs2", @@ -2013,7 +2013,7 @@ dependencies = [ [[package]] name = "blueprint-test-utils" -version = "0.1.1" +version = "0.1.2" dependencies = [ "alloy-contract", "alloy-primitives 0.7.7", @@ -2266,7 +2266,7 @@ dependencies = [ [[package]] name = "cargo-tangle" -version = "0.2.3" +version = "0.2.4" dependencies = [ "alloy-json-abi", "alloy-network", @@ -4721,7 +4721,7 @@ dependencies = [ [[package]] name = "gadget-blueprint-proc-macro" -version = "0.3.1" +version = "0.4.0" dependencies = [ "async-trait", "gadget-blueprint-proc-macro-core", @@ -4738,7 +4738,7 @@ dependencies = [ [[package]] name = "gadget-blueprint-proc-macro-core" -version = "0.1.5" +version = "0.2.0" dependencies = [ "cid", "ethereum-types", @@ -4762,7 +4762,7 @@ dependencies = [ [[package]] name = "gadget-blueprint-serde" -version = "0.1.1" +version = "0.2.0" dependencies = [ "paste", "serde", @@ -4772,7 +4772,7 @@ dependencies = [ [[package]] name = "gadget-context-derive" -version = "0.2.0" +version = "0.2.1" dependencies = [ "alloy-network", "alloy-provider", @@ -4813,7 +4813,7 @@ dependencies = [ [[package]] name = "gadget-sdk" -version = "0.4.0" +version = "0.5.0" dependencies = [ "alloy-contract", "alloy-json-abi", diff --git a/Cargo.toml b/Cargo.toml index 1f19314c..ac7a0c67 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.1.1", path = "./blueprint-manager" } -blueprint-serde = { version = "0.1.1", path = "./blueprint-serde", package = "gadget-blueprint-serde" } +blueprint-manager = { version = "0.1.2", path = "./blueprint-manager" } +blueprint-serde = { version = "0.2.0", path = "./blueprint-serde", package = "gadget-blueprint-serde" } blueprint-test-utils = { path = "./blueprint-test-utils" } -gadget-sdk = { path = "./sdk", default-features = false, version = "0.4.0" } +gadget-sdk = { path = "./sdk", default-features = false, version = "0.5.0" } 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.3.1" } -gadget-blueprint-proc-macro-core = { path = "./macros/blueprint-proc-macro-core", default-features = false, version = "0.1.5" } -gadget-context-derive = { path = "./macros/context-derive", default-features = false, version = "0.2.0" } +gadget-blueprint-proc-macro = { path = "./macros/blueprint-proc-macro", default-features = false, version = "0.4.0" } +gadget-blueprint-proc-macro-core = { path = "./macros/blueprint-proc-macro-core", default-features = false, version = "0.2.0" } +gadget-context-derive = { path = "./macros/context-derive", default-features = false, version = "0.2.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.1.6" } -cargo-tangle = { path = "./cli", version = "0.2.3" } +blueprint-metadata = { path = "./blueprint-metadata", default-features = false, version = "0.1.7" } +cargo-tangle = { path = "./cli", version = "0.2.4" } cargo_metadata = { version = "0.18.1" } # Tangle-related dependencies diff --git a/blueprint-manager/CHANGELOG.md b/blueprint-manager/CHANGELOG.md index da8eb932..2a616408 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.1.2](https://github.com/tangle-network/gadget/compare/blueprint-manager-v0.1.1...blueprint-manager-v0.1.2) - 2024-11-16 + +### Other + +- updated the following local packages: gadget-sdk + ## [0.1.1](https://github.com/tangle-network/gadget/releases/tag/blueprint-manager-v0.1.1) - 2024-11-08 ### Added diff --git a/blueprint-manager/Cargo.toml b/blueprint-manager/Cargo.toml index 6d06699f..6e7d8248 100644 --- a/blueprint-manager/Cargo.toml +++ b/blueprint-manager/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "blueprint-manager" -version = "0.1.1" +version = "0.1.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 9f31c262..605ff2a5 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.7](https://github.com/tangle-network/gadget/compare/blueprint-metadata-v0.1.6...blueprint-metadata-v0.1.7) - 2024-11-16 + +### Other + +- updated the following local packages: gadget-blueprint-proc-macro-core + ## [0.1.6](https://github.com/tangle-network/gadget/compare/blueprint-metadata-v0.1.5...blueprint-metadata-v0.1.6) - 2024-10-25 ### Other diff --git a/blueprint-metadata/Cargo.toml b/blueprint-metadata/Cargo.toml index 1aceac14..2e89befd 100644 --- a/blueprint-metadata/Cargo.toml +++ b/blueprint-metadata/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "blueprint-metadata" -version = "0.1.6" +version = "0.1.7" 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 1ea0a6be..984c3349 100644 --- a/blueprint-serde/CHANGELOG.md +++ b/blueprint-serde/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/gadget-blueprint-serde-v0.1.1...gadget-blueprint-serde-v0.2.0) - 2024-11-16 + +### Added + +- *(gadget-blueprint-serde)* [**breaking**] change array/tuple serialization + +### Other + +- clippy + ## [0.1.1](https://github.com/tangle-network/gadget/compare/gadget-blueprint-serde-v0.1.0...gadget-blueprint-serde-v0.1.1) - 2024-11-08 ### Added diff --git a/blueprint-serde/Cargo.toml b/blueprint-serde/Cargo.toml index 411f9ee1..4be99d22 100644 --- a/blueprint-serde/Cargo.toml +++ b/blueprint-serde/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "gadget-blueprint-serde" -version = "0.1.1" +version = "0.2.0" 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 7ec19fc2..1cf1b3da 100644 --- a/blueprint-test-utils/CHANGELOG.md +++ b/blueprint-test-utils/CHANGELOG.md @@ -7,6 +7,17 @@ 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/blueprint-test-utils-v0.1.1...blueprint-test-utils-v0.1.2) - 2024-11-16 + +### Added + +- improved eigenlayer context and testing ([#453](https://github.com/tangle-network/gadget/pull/453)) + +### Other + +- enable `format_code_in_doc_comments` for rustfmt ([#467](https://github.com/tangle-network/gadget/pull/467)) +- fix changelog files ([#464](https://github.com/tangle-network/gadget/pull/464)) + ## [0.1.1](https://github.com/tangle-network/gadget/releases/tag/blueprint-test-utils-v0.1.1) - 2024-11-08 ### Added diff --git a/blueprint-test-utils/Cargo.toml b/blueprint-test-utils/Cargo.toml index a3a1abca..90409598 100644 --- a/blueprint-test-utils/Cargo.toml +++ b/blueprint-test-utils/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "blueprint-test-utils" -version = "0.1.1" +version = "0.1.2" description = "Tangle Blueprint test utils" authors.workspace = true edition.workspace = true diff --git a/cli/CHANGELOG.md b/cli/CHANGELOG.md index 7944c4f5..b6ef143b 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.4](https://github.com/tangle-network/gadget/compare/cargo-tangle-v0.2.3...cargo-tangle-v0.2.4) - 2024-11-16 + +### Other + +- fix changelog files ([#464](https://github.com/tangle-network/gadget/pull/464)) + ## [0.2.3](https://github.com/tangle-network/gadget/compare/cargo-tangle-v0.2.2...cargo-tangle-v0.2.3) - 2024-11-08 ### Added diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 9a345880..418bb664 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cargo-tangle" -version = "0.2.3" +version = "0.2.4" 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 0e714def..095f3803 100644 --- a/macros/blueprint-proc-macro-core/CHANGELOG.md +++ b/macros/blueprint-proc-macro-core/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/gadget-blueprint-proc-macro-core-v0.1.5...gadget-blueprint-proc-macro-core-v0.2.0) - 2024-11-16 + +### Added + +- *(gadget-sdk)* [**breaking**] integrate `blueprint-serde` ([#469](https://github.com/tangle-network/gadget/pull/469)) + +### Other + +- *(macros)* cleanup macros, add better error handling, dedup code, DX ([#472](https://github.com/tangle-network/gadget/pull/472)) + ## [0.1.5](https://github.com/tangle-network/gadget/compare/gadget-blueprint-proc-macro-core-v0.1.4...gadget-blueprint-proc-macro-core-v0.1.5) - 2024-10-25 ### Fixed diff --git a/macros/blueprint-proc-macro-core/Cargo.toml b/macros/blueprint-proc-macro-core/Cargo.toml index bfb795e6..8c249e6e 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.5" +version = "0.2.0" 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 8933773a..a58e912c 100644 --- a/macros/blueprint-proc-macro/CHANGELOG.md +++ b/macros/blueprint-proc-macro/CHANGELOG.md @@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.4.0](https://github.com/tangle-network/gadget/compare/gadget-blueprint-proc-macro-v0.3.1...gadget-blueprint-proc-macro-v0.4.0) - 2024-11-16 + +### Added + +- *(gadget-sdk)* [**breaking**] integrate `blueprint-serde` ([#469](https://github.com/tangle-network/gadget/pull/469)) + +### Other + +- *(macros)* cleanup macros, add better error handling, dedup code, DX ([#472](https://github.com/tangle-network/gadget/pull/472)) + ## [0.3.1](https://github.com/tangle-network/gadget/compare/gadget-blueprint-proc-macro-v0.3.0...gadget-blueprint-proc-macro-v0.3.1) - 2024-11-08 ### Added diff --git a/macros/blueprint-proc-macro/Cargo.toml b/macros/blueprint-proc-macro/Cargo.toml index e5cc823e..7dcbb48d 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.3.1" +version = "0.4.0" authors.workspace = true edition.workspace = true license.workspace = true diff --git a/macros/context-derive/CHANGELOG.md b/macros/context-derive/CHANGELOG.md index 04cfb1ee..7e435519 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.2.1](https://github.com/tangle-network/gadget/compare/gadget-context-derive-v0.2.0...gadget-context-derive-v0.2.1) - 2024-11-16 + +### Added + +- improved eigenlayer context and testing ([#453](https://github.com/tangle-network/gadget/pull/453)) + ## [0.2.0](https://github.com/tangle-network/gadget/compare/gadget-context-derive-v0.1.3...gadget-context-derive-v0.2.0) - 2024-11-05 ### Added diff --git a/macros/context-derive/Cargo.toml b/macros/context-derive/Cargo.toml index 59ef91ba..bee33ec8 100644 --- a/macros/context-derive/Cargo.toml +++ b/macros/context-derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "gadget-context-derive" -version = "0.2.0" +version = "0.2.1" authors.workspace = true edition.workspace = true license.workspace = true diff --git a/sdk/CHANGELOG.md b/sdk/CHANGELOG.md index 941b0a98..1fa9ba8e 100644 --- a/sdk/CHANGELOG.md +++ b/sdk/CHANGELOG.md @@ -7,6 +7,21 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.5.0](https://github.com/tangle-network/gadget/compare/gadget-sdk-v0.4.0...gadget-sdk-v0.5.0) - 2024-11-16 + +### Added + +- Add utils for blueprints: hashing, config convenience functions ([#476](https://github.com/tangle-network/gadget/pull/476)) +- improved eigenlayer context and testing ([#453](https://github.com/tangle-network/gadget/pull/453)) +- *(gadget-sdk)* [**breaking**] integrate `blueprint-serde` ([#469](https://github.com/tangle-network/gadget/pull/469)) +- *(gadget-sdk)* [**breaking**] add more Docker utils ([#466](https://github.com/tangle-network/gadget/pull/466)) +- add IN_ADDR_ANY for V4 and V6 ([#461](https://github.com/tangle-network/gadget/pull/461)) + +### Other + +- *(macros)* cleanup macros, add better error handling, dedup code, DX ([#472](https://github.com/tangle-network/gadget/pull/472)) +- enable `format_code_in_doc_comments` for rustfmt ([#467](https://github.com/tangle-network/gadget/pull/467)) + ## [0.4.0](https://github.com/tangle-network/gadget/compare/gadget-sdk-v0.3.0...gadget-sdk-v0.4.0) - 2024-11-08 ### Fixed diff --git a/sdk/Cargo.toml b/sdk/Cargo.toml index e322d637..c2267046 100644 --- a/sdk/Cargo.toml +++ b/sdk/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "gadget-sdk" -version = "0.4.0" +version = "0.5.0" authors.workspace = true edition.workspace = true homepage.workspace = true