Skip to content

Commit

Permalink
chore: release
Browse files Browse the repository at this point in the history
  • Loading branch information
febo committed Jul 29, 2023
1 parent 5ab665b commit a010cca
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.2.0"
version = "0.2.1"
edition = "2018"

[[bin]]
Expand All @@ -14,7 +14,7 @@ path = "src/bin/main.rs"

[dependencies]
clap = { version = "3.0.14", features = ["derive"] }
shank_idl = { version= "0.2.0", path = "../shank-idl" }
shank_idl = { version= "0.2.1", path = "../shank-idl" }
anyhow = "1.0.48"
fern = { version = "0.6.0", features = ["colored"] }
log = "0.4.14"
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.2.0"
version = "0.2.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 @@ -9,7 +9,7 @@ edition = "2018"

[dependencies]
shellexpand = "2.1.0"
shank_macro_impl = { version = "0.2.0", path = "../shank-macro-impl" }
shank_macro_impl = { version = "0.2.1", path = "../shank-macro-impl" }
serde = { version = "1.0.130", features = ["derive"] }
serde_json = "1.0.72"
anyhow = "1.0.48"
Expand Down
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.2.0"
version = "0.2.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.2.0"
version = "0.2.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 @@ -12,8 +12,8 @@ proc-macro = true
doctest = false

[dependencies]
shank_macro_impl = { version = "0.2.0", path = "../shank-macro-impl" }
shank_render = { version = "0.2.0", path = "../shank-render" }
shank_macro_impl = { version = "0.2.1", path = "../shank-macro-impl" }
shank_render = { version = "0.2.1", path = "../shank-render" }
proc-macro2 = "1.0.32"
quote = "1.0.10"
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.2.0"
version = "0.2.1"
description = "Renders implementaions derived from shank macros"
authors = ["Metaplex Maintainers <[email protected]>"]
repository = "https://github.com/metaplex-foundation/shank"
Expand All @@ -12,7 +12,7 @@ edition = "2018"
[dependencies]
proc-macro2 = "1.0.46"
quote = "1.0.21"
shank_macro_impl = { version = "0.2.0", path = "../shank-macro-impl" }
shank_macro_impl = { version = "0.2.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.2.0"
version = "0.2.1"
edition = "2018"


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

0 comments on commit a010cca

Please sign in to comment.