From 133243fbbc98d8d5ea25661efe44606e9d54b872 Mon Sep 17 00:00:00 2001 From: "webb-spider[bot]" <182531479+webb-spider[bot]@users.noreply.github.com> Date: Tue, 5 Nov 2024 10:46:34 +0000 Subject: [PATCH] chore: release --- Cargo.lock | 11 +++++----- Cargo.toml | 10 +++++----- blueprint-serde/CHANGELOG.md | 18 +++++++++++++++++ .../tangle-raw-event-listener/Cargo.toml | 2 +- cli/CHANGELOG.md | 14 +++++++++++++ cli/Cargo.toml | 2 +- gadget-io/CHANGELOG.md | 6 ++++++ gadget-io/Cargo.toml | 2 +- macros/blueprint-proc-macro/CHANGELOG.md | 17 ++++++++++++++++ macros/blueprint-proc-macro/Cargo.toml | 2 +- macros/context-derive/CHANGELOG.md | 15 ++++++++++++++ macros/context-derive/Cargo.toml | 2 +- sdk/CHANGELOG.md | 20 +++++++++++++++++++ sdk/Cargo.toml | 2 +- 14 files changed, 106 insertions(+), 17 deletions(-) create mode 100644 blueprint-serde/CHANGELOG.md diff --git a/Cargo.lock b/Cargo.lock index 6b2dedff..315899bc 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2178,7 +2178,7 @@ dependencies = [ [[package]] name = "cargo-tangle" -version = "0.2.1" +version = "0.2.2" dependencies = [ "alloy-json-abi", "alloy-network", @@ -4617,7 +4617,7 @@ dependencies = [ [[package]] name = "gadget-blueprint-proc-macro" -version = "0.2.3" +version = "0.3.0" dependencies = [ "async-trait", "gadget-blueprint-proc-macro-core", @@ -4667,7 +4667,7 @@ dependencies = [ [[package]] name = "gadget-context-derive" -version = "0.1.3" +version = "0.2.0" dependencies = [ "alloy-network", "alloy-provider", @@ -4681,7 +4681,7 @@ dependencies = [ [[package]] name = "gadget-io" -version = "0.0.4" +version = "0.0.5" dependencies = [ "cfg-if 1.0.0", "clap", @@ -4708,7 +4708,7 @@ dependencies = [ [[package]] name = "gadget-sdk" -version = "0.2.3" +version = "0.3.0" dependencies = [ "alloy-contract", "alloy-network", @@ -4737,7 +4737,6 @@ dependencies = [ "futures", "gadget-blueprint-proc-macro", "gadget-blueprint-proc-macro-core", - "gadget-blueprint-serde", "gadget-context-derive", "gadget-io", "getrandom", diff --git a/Cargo.toml b/Cargo.toml index 519bff7f..19a03955 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -45,23 +45,23 @@ needless_late_init = "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-serde = { version = "0.1.0", path = "./blueprint-serde", package = "gadget-blueprint-serde" } 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.3.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" } 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.2.3" } +gadget-blueprint-proc-macro = { path = "./macros/blueprint-proc-macro", default-features = false, version = "0.3.0" } 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.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.1" } +cargo-tangle = { path = "./cli", version = "0.2.2" } cargo_metadata = { version = "0.18.1" } # Tangle-related dependencies diff --git a/blueprint-serde/CHANGELOG.md b/blueprint-serde/CHANGELOG.md new file mode 100644 index 00000000..2482ed40 --- /dev/null +++ b/blueprint-serde/CHANGELOG.md @@ -0,0 +1,18 @@ +# Changelog + +All notable changes to this project will be documented in this file. + +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + +## [Unreleased] + +## [0.1.0](https://github.com/tangle-network/gadget/releases/tag/gadget-blueprint-serde-v0.1.0) - 2024-11-05 + +### Added + +- `blueprint-serde` crate ([#429](https://github.com/tangle-network/gadget/pull/429)) + +### Other + +- add description to crates ([#444](https://github.com/tangle-network/gadget/pull/444)) diff --git a/blueprints/tangle-raw-event-listener/Cargo.toml b/blueprints/tangle-raw-event-listener/Cargo.toml index 60e138ad..f02ba81d 100644 --- a/blueprints/tangle-raw-event-listener/Cargo.toml +++ b/blueprints/tangle-raw-event-listener/Cargo.toml @@ -19,4 +19,4 @@ blueprint-metadata = { workspace = true } [features] default = ["std"] -std = [] \ No newline at end of file +std = [] diff --git a/cli/CHANGELOG.md b/cli/CHANGELOG.md index 55895ae3..0ea4da23 100644 --- a/cli/CHANGELOG.md +++ b/cli/CHANGELOG.md @@ -7,6 +7,20 @@ 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-11-05 + +### Added + +- *(gadget-sdk)* add TxProgressExt trait ([#425](https://github.com/tangle-network/gadget/pull/425)) + +### Fixed + +- *(cargo-tangle)* CLI bugs ([#409](https://github.com/tangle-network/gadget/pull/409)) + +### Other + +- Continue Improving Event Flows ([#399](https://github.com/tangle-network/gadget/pull/399)) + ## [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..40b0cbe9 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-11-05 + +### 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..c442cd5e 100644 --- a/macros/blueprint-proc-macro/CHANGELOG.md +++ b/macros/blueprint-proc-macro/CHANGELOG.md @@ -7,6 +7,23 @@ 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-v0.2.3...gadget-blueprint-proc-macro-v0.3.0) - 2024-11-05 + +### Added + +- [**breaking**] Refactor EventFlows for EVM and Remove EventWatchers ([#423](https://github.com/tangle-network/gadget/pull/423)) +- symbiotic initial integration ([#411](https://github.com/tangle-network/gadget/pull/411)) + +### Fixed + +- *(gadget-sdk)* update sdk and utilities for tangle avs ([#355](https://github.com/tangle-network/gadget/pull/355)) +- *(blueprint-proc-macro)* resolve dependency cycle with gadget-sdk +- *(cargo-tangle)* CLI bugs ([#409](https://github.com/tangle-network/gadget/pull/409)) + +### Other + +- Continue Improving Event Flows ([#399](https://github.com/tangle-network/gadget/pull/399)) + ## [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..b21504e4 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.3.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 f84783c0..04cfb1ee 100644 --- a/macros/context-derive/CHANGELOG.md +++ b/macros/context-derive/CHANGELOG.md @@ -7,6 +7,21 @@ 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-context-derive-v0.1.3...gadget-context-derive-v0.2.0) - 2024-11-05 + +### Added + +- symbiotic initial integration ([#411](https://github.com/tangle-network/gadget/pull/411)) + +### Fixed + +- *(sdk)* [**breaking**] allow for zero-based `blueprint_id` ([#426](https://github.com/tangle-network/gadget/pull/426)) + +### Other + +- Continue Improving Event Flows ([#399](https://github.com/tangle-network/gadget/pull/399)) +- improve blueprint-manager and blueprint-test-utils ([#421](https://github.com/tangle-network/gadget/pull/421)) + ## [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..1d89d40b 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.2.0" authors.workspace = true edition.workspace = true license.workspace = true diff --git a/sdk/CHANGELOG.md b/sdk/CHANGELOG.md index 7aced082..d74f2aa9 100644 --- a/sdk/CHANGELOG.md +++ b/sdk/CHANGELOG.md @@ -7,6 +7,26 @@ 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-sdk-v0.2.3...gadget-sdk-v0.3.0) - 2024-11-05 + +### Added + +- [**breaking**] Refactor EventFlows for EVM and Remove EventWatchers ([#423](https://github.com/tangle-network/gadget/pull/423)) +- *(gadget-sdk)* add TxProgressExt trait ([#425](https://github.com/tangle-network/gadget/pull/425)) +- feat!(gadget-sdk): add an Error type for executor module ([#420](https://github.com/tangle-network/gadget/pull/420)) +- symbiotic initial integration ([#411](https://github.com/tangle-network/gadget/pull/411)) + +### Fixed + +- *(gadget-sdk)* update sdk and utilities for tangle avs ([#355](https://github.com/tangle-network/gadget/pull/355)) +- *(gadget-sdk)* Return `Bytes` when using `Vec` in params and result ([#428](https://github.com/tangle-network/gadget/pull/428)) +- *(sdk)* [**breaking**] allow for zero-based `blueprint_id` ([#426](https://github.com/tangle-network/gadget/pull/426)) +- *(cargo-tangle)* CLI bugs ([#409](https://github.com/tangle-network/gadget/pull/409)) + +### Other + +- Continue Improving Event Flows ([#399](https://github.com/tangle-network/gadget/pull/399)) + ## [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 2a05e925..6fec8836 100644 --- a/sdk/Cargo.toml +++ b/sdk/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "gadget-sdk" -version = "0.2.3" +version = "0.3.0" authors.workspace = true edition.workspace = true homepage.workspace = true