From 5f7ae6b2777c190fa79057a7b311c23b1b16b617 Mon Sep 17 00:00:00 2001 From: Martin Nordholts Date: Mon, 9 May 2022 08:35:27 +0200 Subject: [PATCH] release-checklist.md: Recommend a single git grep command for MSRV That filters out irrelevant hits in CHANGELOG.md and tests/. --- doc/release-checklist.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/release-checklist.md b/doc/release-checklist.md index c3ebaaea..9212b407 100644 --- a/doc/release-checklist.md +++ b/doc/release-checklist.md @@ -7,8 +7,8 @@ - [ ] Find the current min. supported Rust version by running `grep '^\s*MIN_SUPPORTED_RUST_VERSION' .github/workflows/CICD.yml`. - [ ] Update the version and the min. supported Rust version in `README.md` and - `doc/README-*.md`. Check with `git grep -i 'rust.*1\.'` and - `git grep -i '1\..*rust'`. + `doc/README-*.md`. Check with + `git grep -i -e 'rust.*1\.' -e '1\..*rust' | grep README | grep -v tests/`. - [ ] Update `CHANGELOG.md`. Introduce a section for the new release. ## Update syntaxes and themes (build assets)