From a98df84c5991fb959ba06887b0d925188b52da4a Mon Sep 17 00:00:00 2001 From: Stefan Holderbach Date: Wed, 26 Jul 2023 14:20:03 +0200 Subject: [PATCH] Specify that config versions need updating as well (#564) Our default config files carry a version specifier as well to make diagnosis easier. You need to update them with the version bump PR! --- make_release/Readme.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/make_release/Readme.md b/make_release/Readme.md index d6998d7..69ea51a 100644 --- a/make_release/Readme.md +++ b/make_release/Readme.md @@ -25,7 +25,8 @@ ## 1. Minor bump of the version ([example][nushell bump example]) - [ ] bump the version with `sd 'version = "0.xx.1"' 'version = "0.xx+1.0"' **/Cargo.toml` -- [ ] commit `Cargo.lock` +- [ ] bump the version info in the default configs with `sd 'version = 0.xx.1' 'version = 0.xx+1.0' **/*.nu` +- [ ] Also commit `Cargo.lock` AFTER running a cargo command (or update via `sd 'version = "0.xx.1"' 'version = "0.xx+1.0"' **/Cargo.lock` assuming no other package carries that version specifier) ## 2. Tag the [`nushell`] repo > **Warning**