From 37ad23a2568ab260e90e194030745a6fc633eb03 Mon Sep 17 00:00:00 2001 From: "webb-spider[bot]" <182531479+webb-spider[bot]@users.noreply.github.com> Date: Wed, 6 Nov 2024 06:17:05 +0000 Subject: [PATCH] chore: release --- Cargo.lock | 8 ++++---- Cargo.toml | 8 ++++---- blueprint-serde/CHANGELOG.md | 6 ++++++ blueprint-serde/Cargo.toml | 2 +- cli/CHANGELOG.md | 6 ++++++ cli/Cargo.toml | 2 +- macros/blueprint-proc-macro/CHANGELOG.md | 6 ++++++ macros/blueprint-proc-macro/Cargo.toml | 2 +- sdk/CHANGELOG.md | 6 ++++++ sdk/Cargo.toml | 2 +- 10 files changed, 36 insertions(+), 12 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 3a39153b..b6df4fc5 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2178,7 +2178,7 @@ dependencies = [ [[package]] name = "cargo-tangle" -version = "0.2.2" +version = "0.2.3" dependencies = [ "alloy-json-abi", "alloy-network", @@ -4617,7 +4617,7 @@ dependencies = [ [[package]] name = "gadget-blueprint-proc-macro" -version = "0.3.0" +version = "0.3.1" dependencies = [ "async-trait", "gadget-blueprint-proc-macro-core", @@ -4657,7 +4657,7 @@ dependencies = [ [[package]] name = "gadget-blueprint-serde" -version = "0.1.0" +version = "0.1.1" dependencies = [ "paste", "serde", @@ -4708,7 +4708,7 @@ dependencies = [ [[package]] name = "gadget-sdk" -version = "0.3.0" +version = "0.3.1" dependencies = [ "alloy-contract", "alloy-network", diff --git a/Cargo.toml b/Cargo.toml index 19a03955..36ec3122 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -47,21 +47,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.0", path = "./blueprint-serde", package = "gadget-blueprint-serde" } +blueprint-serde = { version = "0.1.1", path = "./blueprint-serde", package = "gadget-blueprint-serde" } blueprint-test-utils = { path = "./blueprint-test-utils" } -gadget-sdk = { path = "./sdk", default-features = false, version = "0.3.0" } +gadget-sdk = { path = "./sdk", default-features = false, version = "0.3.1" } 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" } periodic-web-poller-blueprint = { path = "./blueprints/periodic-web-poller", default-features = false, version = "0.1.1" } tangle-raw-event-listener-blueprint = { path = "./blueprints/tangle-raw-event-listener", default-features = false, version = "0.1.1" } -gadget-blueprint-proc-macro = { path = "./macros/blueprint-proc-macro", default-features = false, version = "0.3.0" } +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" } 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.2" } +cargo-tangle = { path = "./cli", version = "0.2.3" } cargo_metadata = { version = "0.18.1" } # Tangle-related dependencies diff --git a/blueprint-serde/CHANGELOG.md b/blueprint-serde/CHANGELOG.md index 2482ed40..dc403022 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.1.1](https://github.com/tangle-network/gadget/compare/gadget-blueprint-serde-v0.1.0...gadget-blueprint-serde-v0.1.1) - 2024-11-06 + +### Other + +- release ([#410](https://github.com/tangle-network/gadget/pull/410)) + ## [0.1.0](https://github.com/tangle-network/gadget/releases/tag/gadget-blueprint-serde-v0.1.0) - 2024-11-05 ### Added diff --git a/blueprint-serde/Cargo.toml b/blueprint-serde/Cargo.toml index 70fd610d..411f9ee1 100644 --- a/blueprint-serde/Cargo.toml +++ b/blueprint-serde/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "gadget-blueprint-serde" -version = "0.1.0" +version = "0.1.1" description = "Tangle Blueprints serde integration" authors.workspace = true edition.workspace = true diff --git a/cli/CHANGELOG.md b/cli/CHANGELOG.md index 0ea4da23..7ed03a89 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.3](https://github.com/tangle-network/gadget/compare/cargo-tangle-v0.2.2...cargo-tangle-v0.2.3) - 2024-11-06 + +### Other + +- update Cargo.lock dependencies + ## [0.2.2](https://github.com/tangle-network/gadget/compare/cargo-tangle-v0.2.1...cargo-tangle-v0.2.2) - 2024-11-05 ### Added diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 33e8faf7..87cc0e84 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cargo-tangle" -version = "0.2.2" +version = "0.2.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/CHANGELOG.md b/macros/blueprint-proc-macro/CHANGELOG.md index c442cd5e..c11a22a0 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.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-06 + +### Added + +- constructors for Tangle and EVM ([#447](https://github.com/tangle-network/gadget/pull/447)) + ## [0.3.0](https://github.com/tangle-network/gadget/compare/gadget-blueprint-proc-macro-v0.2.3...gadget-blueprint-proc-macro-v0.3.0) - 2024-11-05 ### Added diff --git a/macros/blueprint-proc-macro/Cargo.toml b/macros/blueprint-proc-macro/Cargo.toml index b21504e4..b19a1663 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.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 d74f2aa9..dc16936e 100644 --- a/sdk/CHANGELOG.md +++ b/sdk/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-sdk-v0.3.0...gadget-sdk-v0.3.1) - 2024-11-06 + +### Other + +- improve test-utils and lower networking log level ([#448](https://github.com/tangle-network/gadget/pull/448)) + ## [0.3.0](https://github.com/tangle-network/gadget/compare/gadget-sdk-v0.2.3...gadget-sdk-v0.3.0) - 2024-11-05 ### Added diff --git a/sdk/Cargo.toml b/sdk/Cargo.toml index 6fec8836..031fe3ca 100644 --- a/sdk/Cargo.toml +++ b/sdk/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "gadget-sdk" -version = "0.3.0" +version = "0.3.1" authors.workspace = true edition.workspace = true homepage.workspace = true