Skip to content

Commit be6458f

Browse files
committed
Prepare version 2.9.0
1 parent ce651c2 commit be6458f

File tree

4 files changed

+23
-8
lines changed

4 files changed

+23
-8
lines changed

CHANGELOG.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,19 @@
11
# Change Log
22

33
## [Unreleased]
4-
[Unreleased]: https://github.com/cashapp/burst/compare/2.7.1...HEAD
4+
[Unreleased]: https://github.com/cashapp/burst/compare/2.9.0...HEAD
55

66
Nothing yet!
77

88

9+
## [2.9.0] *(2025-09-04)*
10+
[2.9.0]: https://github.com/cashapp/burst/releases/tag/2.9.0
11+
12+
**Added**
13+
14+
* Support Kotlin 2.2.20
15+
16+
917
## [2.8.1] *(2025-09-04)*
1018
[2.8.1]: https://github.com/cashapp/burst/releases/tag/2.8.1
1119

README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@ You’ll also need this Gradle dependency:
217217

218218
```kotlin
219219
dependencies {
220-
testImplementation("app.cash.burst:burst-coroutines:2.8.1")
220+
testImplementation("app.cash.burst:burst-coroutines:2.9.0")
221221
...
222222
}
223223
```
@@ -249,7 +249,7 @@ buildscript {
249249
mavenCentral()
250250
}
251251
dependencies {
252-
classpath("app.cash.burst:burst-gradle-plugin:2.8.1")
252+
classpath("app.cash.burst:burst-gradle-plugin:2.9.0")
253253
}
254254
}
255255
```
@@ -270,7 +270,8 @@ certain versions of Kotlin.
270270

271271
| Kotlin | Burst |
272272
|-----------------|---------------|
273-
| 2.2.0 | 2.6.0 - 2.7.1 |
273+
| 2.2.20 | 2.9.0 |
274+
| 2.2.0 - 2.2.10 | 2.6.0 - 2.8.1 |
274275
| 2.1.20 | 2.5.0 |
275276
| 2.1.0 | 2.2.0 - 2.4.0 |
276277
| 2.0.20 - 2.0.21 | 0.1.0 - 2.1.0 |

RELEASING.md

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,21 @@ Releasing
22
=========
33

44
1. Update `CHANGELOG.md`.
5+
1. Change the `Unreleased` header to the release version.
6+
2. Add a link URL to ensure the header link works.
7+
3. Add a new `Unreleased` section to the top.
58

6-
2. Set versions:
9+
10+
2. Update compatibility chart at the bottom of the `README.md`.
11+
12+
3. Set versions:
713

814
```
915
export RELEASE_VERSION=X.Y.Z
1016
export NEXT_VERSION=X.Y.Z-SNAPSHOT
1117
```
1218
13-
3. Update versions, tag the release, and prepare for the next release.
19+
4. Update versions, tag the release, and prepare for the next release.
1420
1521
```
1622
sed -i "" \
@@ -31,6 +37,6 @@ Releasing
3137
git push && git push --tags
3238
```
3339
34-
4. Wait for [GitHub Actions][github_actions] to build and promote the release.
40+
5. Wait for [GitHub Actions][github_actions] to build and promote the release.
3541
3642
[github_actions]: https://github.com/cashapp/burst/actions

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@ org.gradle.jvmargs=-Xmx1024m -Dfile.encoding=UTF-8
33
org.gradle.parallel=true
44

55
# HEY! If you change the major version here be sure to update release.yaml doc target folder!
6-
VERSION_NAME=2.9.0-SNAPSHOT
6+
VERSION_NAME=2.9.0
77

88
systemProp.org.gradle.internal.http.socketTimeout=120000

0 commit comments

Comments
 (0)