diff --git a/Cargo.lock b/Cargo.lock index 82d45a80..24f8e14d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2218,7 +2218,7 @@ dependencies = [ [[package]] name = "cargo-tangle" -version = "0.2.1" +version = "0.2.2" dependencies = [ "alloy-json-abi", "alloy-network", @@ -4657,7 +4657,7 @@ dependencies = [ [[package]] name = "gadget-blueprint-proc-macro" -version = "0.2.3" +version = "0.2.4" dependencies = [ "async-trait", "gadget-blueprint-proc-macro-core", @@ -4697,7 +4697,7 @@ dependencies = [ [[package]] name = "gadget-context-derive" -version = "0.1.3" +version = "0.1.4" dependencies = [ "alloy-network", "alloy-provider", @@ -4711,7 +4711,7 @@ dependencies = [ [[package]] name = "gadget-io" -version = "0.0.4" +version = "0.0.5" dependencies = [ "cfg-if 1.0.0", "clap", @@ -4738,7 +4738,7 @@ dependencies = [ [[package]] name = "gadget-sdk" -version = "0.2.3" +version = "0.2.4" dependencies = [ "alloy-contract", "alloy-network", diff --git a/Cargo.toml b/Cargo.toml index 0931e770..2106120b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -40,20 +40,20 @@ single_match_else = "allow" broken_intra_doc_links = "deny" [workspace.dependencies] -gadget-io = { version = "0.0.4", path = "./gadget-io", default-features = false } +gadget-io = { version = "0.0.5", 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.3" } +gadget-sdk = { path = "./sdk", default-features = false, version = "0.2.4" } 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" } -gadget-blueprint-proc-macro = { path = "./macros/blueprint-proc-macro", default-features = false, version = "0.2.3" } +gadget-blueprint-proc-macro = { path = "./macros/blueprint-proc-macro", default-features = false, version = "0.2.4" } 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.1.3" } +gadget-context-derive = { path = "./macros/context-derive", default-features = false, version = "0.1.4" } blueprint-metadata = { path = "./blueprint-metadata", default-features = false, version = "0.1.6" } -cargo-tangle = { path = "./cli", version = "0.2.1" } +cargo-tangle = { path = "./cli", version = "0.2.2" } cargo_metadata = { version = "0.18.1" } # Tangle-related dependencies diff --git a/cli/CHANGELOG.md b/cli/CHANGELOG.md index 55895ae3..c09cb7f5 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.2](https://github.com/tangle-network/gadget/compare/cargo-tangle-v0.2.1...cargo-tangle-v0.2.2) - 2024-10-29 + +### Fixed + +- *(cargo-tangle)* CLI bugs ([#409](https://github.com/tangle-network/gadget/pull/409)) + ## [0.2.1](https://github.com/tangle-network/gadget/compare/cargo-tangle-v0.2.0...cargo-tangle-v0.2.1) - 2024-10-25 ### Added diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 237ca354..33e8faf7 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cargo-tangle" -version = "0.2.1" +version = "0.2.2" description = "A command-line tool to create and deploy blueprints on Tangle Network" authors.workspace = true edition.workspace = true diff --git a/gadget-io/CHANGELOG.md b/gadget-io/CHANGELOG.md index 3f41f252..87ed8e05 100644 --- a/gadget-io/CHANGELOG.md +++ b/gadget-io/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.0.5](https://github.com/tangle-network/gadget/compare/gadget-io-v0.0.4...gadget-io-v0.0.5) - 2024-10-29 + +### Fixed + +- *(cargo-tangle)* CLI bugs ([#409](https://github.com/tangle-network/gadget/pull/409)) + ## [0.0.4](https://github.com/tangle-network/gadget/compare/gadget-io-v0.0.3...gadget-io-v0.0.4) - 2024-10-25 ### Other diff --git a/gadget-io/Cargo.toml b/gadget-io/Cargo.toml index 7328f842..79cb4eb3 100644 --- a/gadget-io/Cargo.toml +++ b/gadget-io/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "gadget-io" -version = "0.0.4" +version = "0.0.5" license.workspace = true edition = "2021" description = "Tangle's gadget IO library for writing Tangle blueprints" diff --git a/macros/blueprint-proc-macro/CHANGELOG.md b/macros/blueprint-proc-macro/CHANGELOG.md index fe887070..bb20bd76 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.2.4](https://github.com/tangle-network/gadget/compare/gadget-blueprint-proc-macro-v0.2.3...gadget-blueprint-proc-macro-v0.2.4) - 2024-10-29 + +### Added + +- symbiotic initial integration ([#411](https://github.com/tangle-network/gadget/pull/411)) + +### Fixed + +- *(blueprint-proc-macro)* resolve dependency cycle with gadget-sdk +- *(cargo-tangle)* CLI bugs ([#409](https://github.com/tangle-network/gadget/pull/409)) + ## [0.2.3](https://github.com/tangle-network/gadget/compare/gadget-blueprint-proc-macro-v0.2.2...gadget-blueprint-proc-macro-v0.2.3) - 2024-10-25 ### Other diff --git a/macros/blueprint-proc-macro/Cargo.toml b/macros/blueprint-proc-macro/Cargo.toml index a61477fd..b1378187 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.3" +version = "0.2.4" authors.workspace = true edition.workspace = true license.workspace = true diff --git a/macros/context-derive/CHANGELOG.md b/macros/context-derive/CHANGELOG.md index f84783c0..0311da3b 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.4](https://github.com/tangle-network/gadget/compare/gadget-context-derive-v0.1.3...gadget-context-derive-v0.1.4) - 2024-10-29 + +### Added + +- symbiotic initial integration ([#411](https://github.com/tangle-network/gadget/pull/411)) + ## [0.1.3](https://github.com/tangle-network/gadget/compare/gadget-context-derive-v0.1.2...gadget-context-derive-v0.1.3) - 2024-10-25 ### Other diff --git a/macros/context-derive/Cargo.toml b/macros/context-derive/Cargo.toml index d4d2435a..65c75509 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.3" +version = "0.1.4" authors.workspace = true edition.workspace = true license.workspace = true diff --git a/sdk/CHANGELOG.md b/sdk/CHANGELOG.md index 7aced082..166b7c6e 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.4](https://github.com/tangle-network/gadget/compare/gadget-sdk-v0.2.3...gadget-sdk-v0.2.4) - 2024-10-29 + +### Added + +- symbiotic initial integration ([#411](https://github.com/tangle-network/gadget/pull/411)) + +### Fixed + +- *(cargo-tangle)* CLI bugs ([#409](https://github.com/tangle-network/gadget/pull/409)) + ## [0.2.3](https://github.com/tangle-network/gadget/compare/gadget-sdk-v0.2.2...gadget-sdk-v0.2.3) - 2024-10-25 ### Added diff --git a/sdk/Cargo.toml b/sdk/Cargo.toml index 85340b52..4fb47a6d 100644 --- a/sdk/Cargo.toml +++ b/sdk/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "gadget-sdk" -version = "0.2.3" +version = "0.2.4" authors.workspace = true edition.workspace = true homepage.workspace = true