Skip to content

Commit 81c6b58

Browse files
committed
Update the release procedure docs/tools
1 parent d5581e8 commit 81c6b58

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

RELEASE.md

+1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ To release a new `<version>` of `kotlinx-coroutines`:
1919
* [`coroutines-guide-ui.md`](ui/coroutines-guide-ui.md)
2020
* Properties
2121
* [`gradle.properties`](gradle.properties)
22+
* [`integration-testing/gradle.properties`](integration-testing/gradle.properties)
2223
* Make sure to **exclude** `CHANGES.md` from replacements.
2324

2425
As an alternative approach, you can use `./bump-version.sh new_version`

bump-version.sh

+2-1
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,8 @@ done)
8080
set +e
8181
version_mentions=$(
8282
find . -type f \( -iname '*.properties' -o -iname '*.md' \) \
83-
-not -iname CHANGES.md \
83+
-not -iname CHANGES.md -not -iname CHANGES_UP_TO_1.7.md \
84+
-not -path ./integration/kotlinx-coroutines-jdk8/README.md \
8485
-exec git grep --fixed-strings --word "$old_version" {} +
8586
)
8687
set -e

0 commit comments

Comments
 (0)