Skip to content

Commit

Permalink
chore: release crates manually to unblock release-plz (#380)
Browse files Browse the repository at this point in the history
* chore: release crates manually to unblock release-plz

* chore: update released versions
  • Loading branch information
shekohex authored Oct 23, 2024
1 parent 8c4948a commit 1c8dac4
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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" }

Expand Down
2 changes: 1 addition & 1 deletion blueprint-metadata/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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
Expand Down
3 changes: 0 additions & 3 deletions macros/blueprint-proc-macro/src/job.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand All @@ -778,7 +777,6 @@ pub enum ListenerType {
Custom,
}

#[derive(Debug)]
pub(crate) struct SingleListener {
pub listener: Type,
pub evm_args: Option<EvmArgs>,
Expand Down Expand Up @@ -890,7 +888,6 @@ impl Parse for EventListenerArgs {
}
}

#[derive(Debug)]
pub(crate) struct EvmArgs {
instance: Option<Ident>,
event: Option<Type>,
Expand Down

0 comments on commit 1c8dac4

Please sign in to comment.