Skip to content

Commit

Permalink
Bump to next -dev version
Browse files Browse the repository at this point in the history
  • Loading branch information
SamWilsn committed Oct 13, 2024
1 parent d3075bf commit 6ca0635
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 17 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.

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ members = [ "eipw-preamble", "eipw-lint", "eipw-lint-js", "eipw-snippets" ]
[package]
name = "eipw"
description = "Ethereum Improvement Proposal linter that's one more than eipv"
version = "0.9.0"
version = "0.10.0-dev"
edition = "2021"
license = "MPL-2.0"
rust-version = "1.80"
Expand All @@ -13,10 +13,10 @@ repository = "https://github.com/ethereum/eipw"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
eipw-snippets = { path = "eipw-snippets", version = "0.1.0" }
eipw-snippets = { path = "eipw-snippets", version = "0.2.0-dev" }
tokio = { version = "1.40.0", features = [ "macros" ] }
clap = { version = "4.5.18", features = [ "derive" ] }
eipw-lint = { version = "0.9.0", path = "eipw-lint", features = [ "tokio" ] }
eipw-lint = { version = "0.10.0-dev", path = "eipw-lint", features = [ "tokio" ] }
serde_json = "1.0.99"
thiserror = "1.0.64"
toml = "0.8.19"
Expand Down
6 changes: 3 additions & 3 deletions eipw-lint-js/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "eipw-lint-js"
version = "0.9.0"
version = "0.10.0-dev"
edition = "2021"
license = "MPL-2.0"
rust-version = "1.80"
Expand All @@ -18,12 +18,12 @@ crate-type = ["cdylib", "rlib"]
default = ["console_error_panic_hook"]

[dependencies]
eipw-snippets = { path = "../eipw-snippets", version = "0.1.0" }
eipw-snippets = { path = "../eipw-snippets", version = "0.2.0-dev" }
wasm-bindgen = { version = "0.2.93", features = [ "serde-serialize" ] }
serde-wasm-bindgen = "0.6.5"
wasm-bindgen-futures = "0.4.43"
console_error_panic_hook = { version = "0.1.7", optional = true }
eipw-lint = { version = "0.9.0", path = "../eipw-lint" }
eipw-lint = { version = "0.10.0-dev", path = "../eipw-lint" }
js-sys = "0.3.70"
serde_json = "1.0.128"
serde = { version = "1.0", features = [ "derive" ] }
Expand Down
6 changes: 3 additions & 3 deletions eipw-lint/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "eipw-lint"
version = "0.9.0"
version = "0.10.0-dev"
edition = "2021"
license = "MPL-2.0"
rust-version = "1.80"
Expand All @@ -10,9 +10,9 @@ description = "library of lints for eipw, the Ethereum Improvement Proposal vali
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
eipw-preamble = { version = "0.2.0", path = "../eipw-preamble" }
eipw-preamble = { version = "0.3.0-dev", path = "../eipw-preamble" }
comrak = { version = "0.29.0", default-features = false }
eipw-snippets = { path = "../eipw-snippets", version = "0.1.0" }
eipw-snippets = { path = "../eipw-snippets", version = "0.2.0-dev" }
snafu = "0.8.5"
regex = "1.11.0"
serde_json = "1.0.128"
Expand Down
4 changes: 2 additions & 2 deletions eipw-preamble/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
[package]
name = "eipw-preamble"
version = "0.2.0"
version = "0.3.0-dev"
edition = "2021"
license = "MPL-2.0"
rust-version = "1.80"
repository = "https://github.com/ethereum/eipw"
description = "preamble parser for eipw, the Ethereum Improvement Proposal validator"

[dependencies]
eipw-snippets = { path = "../eipw-snippets", version = "0.1.0" }
eipw-snippets = { path = "../eipw-snippets", version = "0.2.0-dev" }
regex = "1.11.0"
snafu = "0.8.5"

Expand Down
2 changes: 1 addition & 1 deletion eipw-snippets/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "eipw-snippets"
description = "(Hopefully) thin wrapper around annotate-snippets "
version = "0.1.0"
version = "0.2.0-dev"
license = "MIT OR Apache-2.0"
edition = "2021"
rust-version = "1.80"
Expand Down

0 comments on commit 6ca0635

Please sign in to comment.