From 1c8dac4454aad0eea170411064c4b36e0267eabb Mon Sep 17 00:00:00 2001 From: shekohex Date: Wed, 23 Oct 2024 20:24:27 +0300 Subject: [PATCH] chore: release crates manually to unblock release-plz (#380) * chore: release crates manually to unblock release-plz * chore: update released versions --- Cargo.lock | 2 +- Cargo.toml | 4 ++-- blueprint-metadata/Cargo.toml | 2 +- macros/blueprint-proc-macro/src/job.rs | 3 --- 4 files changed, 4 insertions(+), 7 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 4d1f7819c..b12001c9e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1959,7 +1959,7 @@ dependencies = [ [[package]] name = "blueprint-metadata" -version = "0.1.3" +version = "0.1.4" dependencies = [ "cargo_metadata", "fs2", diff --git a/Cargo.toml b/Cargo.toml index bc18f92c7..e2345cabe 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -52,9 +52,9 @@ incredible-squaring-blueprint-eigenlayer = { path = "./blueprints/incredible-squ incredible-squaring-aggregator = { path = "./blueprints/incredible-squaring-eigenlayer/aggregator", 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.0" } -gadget-blueprint-proc-macro-core = { path = "./macros/blueprint-proc-macro-core", default-features = false, version = "0.1.2" } +gadget-blueprint-proc-macro-core = { path = "./macros/blueprint-proc-macro-core", default-features = false, version = "0.1.3" } gadget-context-derive = { path = "./macros/context-derive", default-features = false, version = "0.1.1" } -blueprint-metadata = { path = "./blueprint-metadata", default-features = false, version = "0.1.3" } +blueprint-metadata = { path = "./blueprint-metadata", default-features = false, version = "0.1.4" } cargo-tangle = { path = "./cli", version = "0.1.3" } cargo_metadata = { version = "0.18.1" } diff --git a/blueprint-metadata/Cargo.toml b/blueprint-metadata/Cargo.toml index a0db06070..04374a0d1 100644 --- a/blueprint-metadata/Cargo.toml +++ b/blueprint-metadata/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "blueprint-metadata" -version = "0.1.3" +version = "0.1.4" description = "A build dependency for generating metadata for Blueprint at compile time." authors.workspace = true edition.workspace = true diff --git a/macros/blueprint-proc-macro/src/job.rs b/macros/blueprint-proc-macro/src/job.rs index 40f5bcde1..2d8788644 100644 --- a/macros/blueprint-proc-macro/src/job.rs +++ b/macros/blueprint-proc-macro/src/job.rs @@ -764,7 +764,6 @@ impl Parse for Results { } } -#[derive(Debug)] /// `#[job(event_listener(MyCustomListener, MyCustomListener2)]` /// Accepts an optional argument that specifies the event listener to use that implements EventListener pub(crate) struct EventListenerArgs { @@ -778,7 +777,6 @@ pub enum ListenerType { Custom, } -#[derive(Debug)] pub(crate) struct SingleListener { pub listener: Type, pub evm_args: Option, @@ -890,7 +888,6 @@ impl Parse for EventListenerArgs { } } -#[derive(Debug)] pub(crate) struct EvmArgs { instance: Option, event: Option,