Skip to content

Commit

Permalink
chore: release
Browse files Browse the repository at this point in the history
  • Loading branch information
blockiosaurus committed Feb 28, 2024
1 parent 6a1e84f commit f317a22
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 12 deletions.
4 changes: 2 additions & 2 deletions shank-cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ description = "Shank CLI that extracts solita compatible IDL from your Rust Sola
authors = ["Metaplex Maintainers <[email protected]>"]
repository = "https://github.com/metaplex-foundation/shank"
license = "Apache-2.0"
version = "0.4.0"
version = "0.4.1"
edition = "2018"

[[bin]]
Expand All @@ -17,4 +17,4 @@ anyhow = "1.0.48"
clap = { version = "3.0.14", features = ["derive"] }
fern = { version = "0.6.0", features = ["colored"] }
log = "0.4.14"
shank_idl = { version= "0.4.0", path = "../shank-idl" }
shank_idl = { version= "0.4.1", path = "../shank-idl" }
4 changes: 2 additions & 2 deletions shank-idl/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "shank_idl"
version = "0.4.0"
version = "0.4.1"
description = "Converts information extracted via shank derive macros to a solita compatible IDL."
authors = ["Metaplex Maintainers <[email protected]>"]
repository = "https://github.com/metaplex-foundation/shank"
Expand All @@ -13,5 +13,5 @@ cargo_toml = "0.17"
heck = "0.3.3"
serde = { version = "1.0.130", features = ["derive"] }
serde_json = "1.0.72"
shank_macro_impl = { version = "0.4.0", path = "../shank-macro-impl" }
shank_macro_impl = { version = "0.4.1", path = "../shank-macro-impl" }
shellexpand = "2.1.0"
2 changes: 1 addition & 1 deletion shank-macro-impl/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "shank_macro_impl"
version = "0.4.0"
version = "0.4.1"
description = "Implements and tests shank derive macros"
authors = ["Metaplex Maintainers <[email protected]>"]
repository = "https://github.com/metaplex-foundation/shank"
Expand Down
6 changes: 3 additions & 3 deletions shank-macro/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "shank_macro"
version = "0.4.0"
version = "0.4.1"
description = "Provides macros used to annotate Solana Rust programs in order to extract an IDL with the shank CLI"
authors = ["Metaplex Maintainers <[email protected]>"]
repository = "https://github.com/metaplex-foundation/shank"
Expand All @@ -14,6 +14,6 @@ doctest = false
[dependencies]
proc-macro2 = "1.0.32"
quote = "1.0.10"
shank_macro_impl = { version = "0.4.0", path = "../shank-macro-impl" }
shank_render = { version = "0.4.0", path = "../shank-render" }
shank_macro_impl = { version = "0.4.1", path = "../shank-macro-impl" }
shank_render = { version = "0.4.1", path = "../shank-render" }
syn = "1.0.82"
4 changes: 2 additions & 2 deletions shank-render/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "shank_render"
version = "0.4.0"
version = "0.4.1"
description = "Renders implementaions derived from shank macros"
authors = ["Metaplex Maintainers <[email protected]>"]
repository = "https://github.com/metaplex-foundation/shank"
Expand All @@ -10,7 +10,7 @@ edition = "2018"
[dependencies]
proc-macro2 = "1.0.46"
quote = "1.0.21"
shank_macro_impl = { version = "0.4.0", path = "../shank-macro-impl" }
shank_macro_impl = { version = "0.4.1", path = "../shank-macro-impl" }

[dev-dependencies]
prettyplease = "0.1.21"
4 changes: 2 additions & 2 deletions shank/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ description = "Exposes macros to annotate Rust programs to extract solita compat
authors = ["Metaplex Maintainers <[email protected]>"]
repository = "https://github.com/metaplex-foundation/shank"
license = "Apache-2.0"
version = "0.4.0"
version = "0.4.1"
edition = "2018"


[dependencies]
shank_macro = { version = "0.4.0", path = "../shank-macro" }
shank_macro = { version = "0.4.1", path = "../shank-macro" }

0 comments on commit f317a22

Please sign in to comment.