From ed8fcbe7eeaeeda1c79a3196e59719cb8f5ff80d Mon Sep 17 00:00:00 2001 From: Sam Wilson Date: Thu, 26 Oct 2023 20:39:52 -0400 Subject: [PATCH] Bump version to 0.8.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(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 00345683..dd224a6b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,15 @@ # Changelog +## 0.8.0 - 2023-10-23 + +_Breaks compatibility with `--config` and `default_lints`._ + +### Changed + +- Add `prefix` and `suffix` options to `preamble::requires_status`. +- Add `prefix` and `suffix` options to `preamble::proposal_ref`. +- Add `prefix` and `suffix` options to `markdown::link_status`. + ## 0.7.0 - 2023-10-23 _Breaks compatibility with `--config` and `default_lints`._ diff --git a/Cargo.lock b/Cargo.lock index 72483fab..ed98715d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -363,7 +363,7 @@ checksum = "3a68a4904193147e0a8dec3314640e6db742afd5f6e634f428a6af230d9b3591" [[package]] name = "eipw" -version = "0.7.0" +version = "0.8.0" dependencies = [ "annotate-snippets", "clap", @@ -378,7 +378,7 @@ dependencies = [ [[package]] name = "eipw-lint" -version = "0.7.0" +version = "0.8.0" dependencies = [ "annotate-snippets", "assert_matches", @@ -398,7 +398,7 @@ dependencies = [ [[package]] name = "eipw-lint-js" -version = "0.7.0" +version = "0.8.0" dependencies = [ "annotate-snippets", "console_error_panic_hook", diff --git a/Cargo.toml b/Cargo.toml index b9979bf6..8f575ffd 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.7.0" +version = "0.8.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.7.0", path = "eipw-lint", features = [ "tokio" ] } +eipw-lint = { version = "0.8.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 21ac57b4..e58a6cca 100644 --- a/eipw-lint-js/Cargo.toml +++ b/eipw-lint-js/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "eipw-lint-js" -version = "0.7.0" +version = "0.8.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.7.0", path = "../eipw-lint" } +eipw-lint = { version = "0.8.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 074cb2e4..211d0d8d 100644 --- a/eipw-lint/Cargo.toml +++ b/eipw-lint/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "eipw-lint" -version = "0.7.0" +version = "0.8.0" edition = "2021" license = "MPL-2.0" rust-version = "1.69"