Skip to content

Commit

Permalink
Bump to 0.2.1 because I screwed up 4byte :(
Browse files Browse the repository at this point in the history
  • Loading branch information
SamWilsn committed May 5, 2022
1 parent 3134dab commit 23c149d
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 18 deletions.
10 changes: 5 additions & 5 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion etk-4byte/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "etk-4byte"
version = "0.2.0"
version = "0.2.1"
authors = ["Sam Wilson <sam.wilson@mesh.xyz>"]
license = "MIT OR Apache-2.0"
edition = "2018"
Expand Down
10 changes: 5 additions & 5 deletions etk-analyze/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "etk-analyze"
version = "0.2.0"
version = "0.2.1"
edition = "2018"
authors = ["Sam Wilson <sam.wilson@mesh.xyz>", "lightclient <lightclient@protonmail.com>"]
license = "MIT OR Apache-2.0"
Expand All @@ -17,9 +17,9 @@ cli = ["etk-cli", "etk-asm", "structopt", "snafu"]
[dependencies]
snafu = { optional = true, version = "0.7.1" }
structopt = { optional = true, version = "0.3.26" }
etk-cli = { optional = true, path = "../etk-cli", version = "0.2.0" }
etk-asm = { optional = true, path = "../etk-asm", version = "0.2.0" }
etk-dasm = { path = "../etk-dasm", version = "0.2.0" }
etk-cli = { optional = true, path = "../etk-cli", version = "0.2.1" }
etk-asm = { optional = true, path = "../etk-asm", version = "0.2.1" }
etk-dasm = { path = "../etk-dasm", version = "0.2.1" }
z3 = "0.11.2"

[dependencies.petgraph]
Expand All @@ -28,7 +28,7 @@ default-features = false

[dev-dependencies]
assert_matches = "1.5.0"
etk-asm = { path = "../etk-asm", version = "0.2.0" }
etk-asm = { path = "../etk-asm", version = "0.2.1" }
hex-literal = "0.3.4"

[[bin]]
Expand Down
4 changes: 2 additions & 2 deletions etk-asm/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "etk-asm"
version = "0.2.0"
version = "0.2.1"
authors = ["Sam Wilson <sam.wilson@mesh.xyz>", "lightclient <lightclient@protonmail.com>"]
license = "MIT OR Apache-2.0"
edition = "2018"
Expand All @@ -16,7 +16,7 @@ cli = ["structopt", "etk-cli"]
backtraces = [ "snafu/backtraces" ]

[dependencies]
etk-cli = { optional = true, path = "../etk-cli", version = "0.2.0" }
etk-cli = { optional = true, path = "../etk-cli", version = "0.2.1" }
hex = "0.4.3"
num-bigint = "0.4"
pest = "2.1.3"
Expand Down
2 changes: 1 addition & 1 deletion etk-cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "etk-cli"
version = "0.2.0"
version = "0.2.1"
authors = ["Sam Wilson <sam.wilson@mesh.xyz>", "lightclient <lightclient@protonmail.com>"]
license = "MIT OR Apache-2.0"
edition = "2018"
Expand Down
8 changes: 4 additions & 4 deletions etk-dasm/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "etk-dasm"
version = "0.2.0"
version = "0.2.1"
authors = ["Sam Wilson <sam.wilson@mesh.xyz>", "lightclient <lightclient@protonmail.com>"]
license = "MIT OR Apache-2.0"
edition = "2018"
Expand All @@ -16,10 +16,10 @@ cli = ["structopt", "etk-cli", "snafu", "etk-4byte"]

[dependencies]
hex = "0.4.3"
etk-asm = { path = "../etk-asm", version = "0.2.0" }
etk-asm = { path = "../etk-asm", version = "0.2.1" }
structopt = { optional = true, version = "0.3.26" }
etk-cli = { optional = true, path = "../etk-cli", version = "0.2.0" }
etk-4byte = { optional = true, path = "../etk-4byte", version = "0.2.0" }
etk-cli = { optional = true, path = "../etk-cli", version = "0.2.1" }
etk-4byte = { optional = true, path = "../etk-4byte", version = "0.2.1" }
snafu = { optional = true, version = "0.7.1" }

[dev-dependencies]
Expand Down

0 comments on commit 23c149d

Please sign in to comment.