From 81c6b580e5aa1ba562ae8302a0d313ed4812f791 Mon Sep 17 00:00:00 2001 From: Dmitry Khalanskiy Date: Fri, 12 May 2023 11:43:53 +0200 Subject: [PATCH] Update the release procedure docs/tools --- RELEASE.md | 1 + bump-version.sh | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/RELEASE.md b/RELEASE.md index a3ba7843d0..4a793bff6d 100644 --- a/RELEASE.md +++ b/RELEASE.md @@ -19,6 +19,7 @@ To release a new `` of `kotlinx-coroutines`: * [`coroutines-guide-ui.md`](ui/coroutines-guide-ui.md) * Properties * [`gradle.properties`](gradle.properties) + * [`integration-testing/gradle.properties`](integration-testing/gradle.properties) * Make sure to **exclude** `CHANGES.md` from replacements. As an alternative approach, you can use `./bump-version.sh new_version` diff --git a/bump-version.sh b/bump-version.sh index a44247bc44..369c88668d 100755 --- a/bump-version.sh +++ b/bump-version.sh @@ -80,7 +80,8 @@ done) set +e version_mentions=$( find . -type f \( -iname '*.properties' -o -iname '*.md' \) \ - -not -iname CHANGES.md \ + -not -iname CHANGES.md -not -iname CHANGES_UP_TO_1.7.md \ + -not -path ./integration/kotlinx-coroutines-jdk8/README.md \ -exec git grep --fixed-strings --word "$old_version" {} + ) set -e