diff --git a/Cargo.lock b/Cargo.lock index 3e4aa26f..545cb2db 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2090,7 +2090,7 @@ dependencies = [ [[package]] name = "blueprint-manager" -version = "0.1.3" +version = "0.2.0" dependencies = [ "async-trait", "auto_impl", @@ -2117,7 +2117,7 @@ dependencies = [ [[package]] name = "blueprint-metadata" -version = "0.1.7" +version = "0.2.0" dependencies = [ "cargo_metadata", "fs2", @@ -2130,7 +2130,7 @@ dependencies = [ [[package]] name = "blueprint-test-utils" -version = "0.1.3" +version = "0.2.0" dependencies = [ "alloy-contract", "alloy-primitives", @@ -2384,7 +2384,7 @@ dependencies = [ [[package]] name = "cargo-tangle" -version = "0.3.0" +version = "0.3.1" dependencies = [ "alloy-json-abi", "alloy-network", @@ -4854,7 +4854,7 @@ dependencies = [ [[package]] name = "gadget-blueprint-proc-macro" -version = "0.4.0" +version = "0.5.0" dependencies = [ "async-trait", "gadget-blueprint-proc-macro-core", @@ -4871,7 +4871,7 @@ dependencies = [ [[package]] name = "gadget-blueprint-proc-macro-core" -version = "0.2.0" +version = "0.3.0" dependencies = [ "cid", "ethereum-types", @@ -4895,7 +4895,7 @@ dependencies = [ [[package]] name = "gadget-blueprint-serde" -version = "0.2.0" +version = "0.3.0" dependencies = [ "paste", "serde", @@ -4906,7 +4906,7 @@ dependencies = [ [[package]] name = "gadget-context-derive" -version = "0.2.2" +version = "0.3.0" dependencies = [ "alloy-network", "alloy-provider", @@ -4949,7 +4949,7 @@ dependencies = [ [[package]] name = "gadget-sdk" -version = "0.5.1" +version = "0.6.0" dependencies = [ "alloy-contract", "alloy-json-abi", diff --git a/Cargo.toml b/Cargo.toml index 051f38d3..42a96ed1 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.3", path = "./blueprint-manager" } -blueprint-serde = { version = "0.2.0", path = "./blueprint-serde", package = "gadget-blueprint-serde" } +blueprint-manager = { version = "0.2.0", path = "./blueprint-manager" } +blueprint-serde = { version = "0.3.0", path = "./blueprint-serde", package = "gadget-blueprint-serde" } blueprint-test-utils = { path = "./blueprint-test-utils" } -gadget-sdk = { path = "./sdk", default-features = false, version = "0.5.1" } +gadget-sdk = { path = "./sdk", default-features = false, version = "0.6.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.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.2" } +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" } 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.7" } -cargo-tangle = { path = "./cli", version = "0.3.0" } +blueprint-metadata = { path = "./blueprint-metadata", default-features = false, version = "0.2.0" } +cargo-tangle = { path = "./cli", version = "0.3.1" } cargo_metadata = { version = "0.18.1" } # Tangle-related dependencies diff --git a/blueprint-manager/CHANGELOG.md b/blueprint-manager/CHANGELOG.md index 584341e6..c4a9d937 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.0](https://github.com/tangle-network/gadget/compare/blueprint-manager-v0.1.3...blueprint-manager-v0.2.0) - 2024-11-29 + +### Other + +- *(gadget-sdk)* [**breaking**] update to latest tangle ([#503](https://github.com/tangle-network/gadget/pull/503)) + ## [0.1.3](https://github.com/tangle-network/gadget/compare/blueprint-manager-v0.1.2...blueprint-manager-v0.1.3) - 2024-11-20 ### Other diff --git a/blueprint-manager/Cargo.toml b/blueprint-manager/Cargo.toml index 2ee1f6a1..da9ec8c7 100644 --- a/blueprint-manager/Cargo.toml +++ b/blueprint-manager/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "blueprint-manager" -version = "0.1.3" +version = "0.2.0" 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 605ff2a5..fa9ca4e8 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.2.0](https://github.com/tangle-network/gadget/compare/blueprint-metadata-v0.1.7...blueprint-metadata-v0.2.0) - 2024-11-29 + +### Other + +- *(gadget-sdk)* [**breaking**] update to latest tangle ([#503](https://github.com/tangle-network/gadget/pull/503)) + ## [0.1.7](https://github.com/tangle-network/gadget/compare/blueprint-metadata-v0.1.6...blueprint-metadata-v0.1.7) - 2024-11-16 ### Other diff --git a/blueprint-metadata/Cargo.toml b/blueprint-metadata/Cargo.toml index 2e89befd..2f7b2ead 100644 --- a/blueprint-metadata/Cargo.toml +++ b/blueprint-metadata/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "blueprint-metadata" -version = "0.1.7" +version = "0.2.0" 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 984c3349..55989fd2 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.0](https://github.com/tangle-network/gadget/compare/gadget-blueprint-serde-v0.2.0...gadget-blueprint-serde-v0.3.0) - 2024-11-29 + +### Fixed + +- *(gadget-blueprint-serde)* [**breaking**] handle bytes properly ([#500](https://github.com/tangle-network/gadget/pull/500)) + ## [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 diff --git a/blueprint-serde/Cargo.toml b/blueprint-serde/Cargo.toml index 13fc0431..f4599851 100644 --- a/blueprint-serde/Cargo.toml +++ b/blueprint-serde/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "gadget-blueprint-serde" -version = "0.2.0" +version = "0.3.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 7b396105..86006e7c 100644 --- a/blueprint-test-utils/CHANGELOG.md +++ b/blueprint-test-utils/CHANGELOG.md @@ -7,6 +7,23 @@ 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/blueprint-test-utils-v0.1.3...blueprint-test-utils-v0.2.0) - 2024-11-29 + +### Added + +- allow zero-sized inputs for tangle-based macros ([#507](https://github.com/tangle-network/gadget/pull/507)) +- add MPCContext derive + test utils refactor ([#497](https://github.com/tangle-network/gadget/pull/497)) + +### Fixed + +- bls signing now passing with modifications to mpc macro ([#504](https://github.com/tangle-network/gadget/pull/504)) + +### Other + +- [**breaking**] update `eigensdk` ([#506](https://github.com/tangle-network/gadget/pull/506)) +- *(gadget-sdk)* [**breaking**] update to latest tangle ([#503](https://github.com/tangle-network/gadget/pull/503)) +- fix log message content + ## [0.1.3](https://github.com/tangle-network/gadget/compare/blueprint-test-utils-v0.1.2...blueprint-test-utils-v0.1.3) - 2024-11-20 ### Other diff --git a/blueprint-test-utils/Cargo.toml b/blueprint-test-utils/Cargo.toml index b9900b98..ee0025e3 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.3" +version = "0.2.0" description = "Tangle Blueprint test utils" authors.workspace = true edition.workspace = true diff --git a/cli/CHANGELOG.md b/cli/CHANGELOG.md index f01d88bf..c6d8edcc 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.3.1](https://github.com/tangle-network/gadget/compare/cargo-tangle-v0.3.0...cargo-tangle-v0.3.1) - 2024-11-29 + +### Other + +- update Cargo.toml dependencies + ## [0.3.0](https://github.com/tangle-network/gadget/compare/cargo-tangle-v0.2.4...cargo-tangle-v0.3.0) - 2024-11-20 ### Added diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 64909b50..a7a8c92b 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cargo-tangle" -version = "0.3.0" +version = "0.3.1" 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 095f3803..9d507865 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.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 + +- *(gadget-sdk)* [**breaking**] update to latest tangle ([#503](https://github.com/tangle-network/gadget/pull/503)) + ## [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 diff --git a/macros/blueprint-proc-macro-core/Cargo.toml b/macros/blueprint-proc-macro-core/Cargo.toml index 8c249e6e..24714150 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.2.0" +version = "0.3.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 a58e912c..814bdcd5 100644 --- a/macros/blueprint-proc-macro/CHANGELOG.md +++ b/macros/blueprint-proc-macro/CHANGELOG.md @@ -7,6 +7,13 @@ 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-blueprint-proc-macro-v0.4.0...gadget-blueprint-proc-macro-v0.5.0) - 2024-11-29 + +### Fixed + +- *(blueprint-proc-macro)* set `tokio` crate in `sdk::main` ([#502](https://github.com/tangle-network/gadget/pull/502)) +- *(gadget-blueprint-serde)* [**breaking**] handle bytes properly ([#500](https://github.com/tangle-network/gadget/pull/500)) + ## [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 diff --git a/macros/blueprint-proc-macro/Cargo.toml b/macros/blueprint-proc-macro/Cargo.toml index 7dcbb48d..798d09b2 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.4.0" +version = "0.5.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 99cba0b2..cf5a50ee 100644 --- a/macros/context-derive/CHANGELOG.md +++ b/macros/context-derive/CHANGELOG.md @@ -7,6 +7,17 @@ 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/gadget-context-derive-v0.2.2...gadget-context-derive-v0.3.0) - 2024-11-29 + +### Added + +- add MPCContext derive + test utils refactor ([#497](https://github.com/tangle-network/gadget/pull/497)) + +### Other + +- [**breaking**] update `eigensdk` ([#506](https://github.com/tangle-network/gadget/pull/506)) +- *(gadget-sdk)* [**breaking**] update to latest tangle ([#503](https://github.com/tangle-network/gadget/pull/503)) + ## [0.2.2](https://github.com/tangle-network/gadget/compare/gadget-context-derive-v0.2.1...gadget-context-derive-v0.2.2) - 2024-11-20 ### Added diff --git a/macros/context-derive/Cargo.toml b/macros/context-derive/Cargo.toml index 7bf82ec2..5b1d7263 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.2" +version = "0.3.0" authors.workspace = true edition.workspace = true license.workspace = true diff --git a/sdk/CHANGELOG.md b/sdk/CHANGELOG.md index bb91de3c..e822e73f 100644 --- a/sdk/CHANGELOG.md +++ b/sdk/CHANGELOG.md @@ -7,6 +7,22 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.6.0](https://github.com/tangle-network/gadget/compare/gadget-sdk-v0.5.1...gadget-sdk-v0.6.0) - 2024-11-29 + +### Added + +- add MPCContext derive + test utils refactor ([#497](https://github.com/tangle-network/gadget/pull/497)) + +### Fixed + +- *(gadget-blueprint-serde)* [**breaking**] handle bytes properly ([#500](https://github.com/tangle-network/gadget/pull/500)) +- *(gadget-sdk)* use the right field for container status + +### Other + +- [**breaking**] update `eigensdk` ([#506](https://github.com/tangle-network/gadget/pull/506)) +- *(gadget-sdk)* [**breaking**] update to latest tangle ([#503](https://github.com/tangle-network/gadget/pull/503)) + ## [0.5.1](https://github.com/tangle-network/gadget/compare/gadget-sdk-v0.5.0...gadget-sdk-v0.5.1) - 2024-11-20 ### Added diff --git a/sdk/Cargo.toml b/sdk/Cargo.toml index f46097a7..387eb329 100644 --- a/sdk/Cargo.toml +++ b/sdk/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "gadget-sdk" -version = "0.5.1" +version = "0.6.0" authors.workspace = true edition.workspace = true homepage.workspace = true