From 0adaeba2d4ed8d086b9a38a1afe5c56e4b5af8c7 Mon Sep 17 00:00:00 2001 From: Sam Wilson Date: Thu, 26 Oct 2023 17:56:26 -0400 Subject: [PATCH] Version bump to 0.7.0 --- CHANGELOG.md | 10 ++++++++++ Cargo.lock | 6 +++--- Cargo.toml | 4 ++-- eipw-lint-js/Cargo.toml | 4 ++-- eipw-lint/Cargo.toml | 2 +- 5 files changed, 18 insertions(+), 8 deletions(-) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 00000000..ac204fe0 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,10 @@ +# Changelog + +## 0.7.0 - 2023-10-23 + +_Breaks compatibility with `--config` and `default_lints`._ + +### Changed + +- Add `prefix` (eg. `eip-`) and `suffix` (eg. `.md`) options to + `markdown::proposal_ref` lint. diff --git a/Cargo.lock b/Cargo.lock index 0f7cd1cf..72483fab 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -363,7 +363,7 @@ checksum = "3a68a4904193147e0a8dec3314640e6db742afd5f6e634f428a6af230d9b3591" [[package]] name = "eipw" -version = "0.6.0" +version = "0.7.0" dependencies = [ "annotate-snippets", "clap", @@ -378,7 +378,7 @@ dependencies = [ [[package]] name = "eipw-lint" -version = "0.6.0" +version = "0.7.0" dependencies = [ "annotate-snippets", "assert_matches", @@ -398,7 +398,7 @@ dependencies = [ [[package]] name = "eipw-lint-js" -version = "0.6.0" +version = "0.7.0" dependencies = [ "annotate-snippets", "console_error_panic_hook", diff --git a/Cargo.toml b/Cargo.toml index d128e32f..b9979bf6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,7 +4,7 @@ members = [ "eipw-lint", "eipw-lint-js" ] [package] name = "eipw" description = "Ethereum Improvement Proposal linter that's one more than eipv" -version = "0.6.0" +version = "0.7.0" edition = "2021" license = "MPL-2.0" rust-version = "1.69" @@ -16,7 +16,7 @@ repository = "https://github.com/ethereum/eipw" annotate-snippets = "0.9.1" tokio = { version = "1.29.0", features = [ "macros" ] } clap = { version = "4.3.9", features = [ "derive" ] } -eipw-lint = { version = "0.6.0", path = "eipw-lint", features = [ "tokio" ] } +eipw-lint = { version = "0.7.0", path = "eipw-lint", features = [ "tokio" ] } serde_json = "1.0.99" thiserror = "1.0.40" toml = "0.7.5" diff --git a/eipw-lint-js/Cargo.toml b/eipw-lint-js/Cargo.toml index 2e5031dd..21ac57b4 100644 --- a/eipw-lint-js/Cargo.toml +++ b/eipw-lint-js/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "eipw-lint-js" -version = "0.6.0" +version = "0.7.0" edition = "2021" license = "MPL-2.0" rust-version = "1.69" @@ -23,7 +23,7 @@ wasm-bindgen = { version = "0.2.87", features = [ "serde-serialize" ] } serde-wasm-bindgen = "0.5" wasm-bindgen-futures = "0.4.37" console_error_panic_hook = { version = "0.1.7", optional = true } -eipw-lint = { version = "0.6.0", path = "../eipw-lint" } +eipw-lint = { version = "0.7.0", path = "../eipw-lint" } js-sys = "0.3.64" serde_json = "1.0.99" serde = { version = "1.0", features = [ "derive" ] } diff --git a/eipw-lint/Cargo.toml b/eipw-lint/Cargo.toml index c876cace..074cb2e4 100644 --- a/eipw-lint/Cargo.toml +++ b/eipw-lint/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "eipw-lint" -version = "0.6.0" +version = "0.7.0" edition = "2021" license = "MPL-2.0" rust-version = "1.69"