File tree Expand file tree Collapse file tree 4 files changed +23
-8
lines changed Expand file tree Collapse file tree 4 files changed +23
-8
lines changed Original file line number Diff line number Diff line change 1
1
# Change Log
2
2
3
3
## [ 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
5
5
6
6
Nothing yet!
7
7
8
8
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
+
9
17
## [ 2.8.1] * (2025-09-04)*
10
18
[ 2.8.1 ] : https://github.com/cashapp/burst/releases/tag/2.8.1
11
19
Original file line number Diff line number Diff line change @@ -217,7 +217,7 @@ You’ll also need this Gradle dependency:
217
217
218
218
``` kotlin
219
219
dependencies {
220
- testImplementation(" app.cash.burst:burst-coroutines:2.8.1 " )
220
+ testImplementation(" app.cash.burst:burst-coroutines:2.9.0 " )
221
221
.. .
222
222
}
223
223
```
@@ -249,7 +249,7 @@ buildscript {
249
249
mavenCentral()
250
250
}
251
251
dependencies {
252
- classpath(" app.cash.burst:burst-gradle-plugin:2.8.1 " )
252
+ classpath(" app.cash.burst:burst-gradle-plugin:2.9.0 " )
253
253
}
254
254
}
255
255
```
@@ -270,7 +270,8 @@ certain versions of Kotlin.
270
270
271
271
| Kotlin | Burst |
272
272
| -----------------| ---------------|
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 |
274
275
| 2.1.20 | 2.5.0 |
275
276
| 2.1.0 | 2.2.0 - 2.4.0 |
276
277
| 2.0.20 - 2.0.21 | 0.1.0 - 2.1.0 |
Original file line number Diff line number Diff line change @@ -2,15 +2,21 @@ Releasing
2
2
=========
3
3
4
4
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.
5
8
6
- 2 . Set versions:
9
+
10
+ 2 . Update compatibility chart at the bottom of the ` README.md ` .
11
+
12
+ 3 . Set versions:
7
13
8
14
```
9
15
export RELEASE_VERSION=X.Y.Z
10
16
export NEXT_VERSION=X.Y.Z-SNAPSHOT
11
17
```
12
18
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.
14
20
15
21
```
16
22
sed -i "" \
@@ -31,6 +37,6 @@ Releasing
31
37
git push && git push --tags
32
38
```
33
39
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.
35
41
36
42
[github_actions]: https://github.com/cashapp/burst/actions
Original file line number Diff line number Diff line change @@ -3,6 +3,6 @@ org.gradle.jvmargs=-Xmx1024m -Dfile.encoding=UTF-8
3
3
org.gradle.parallel =true
4
4
5
5
# 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
7
7
8
8
systemProp.org.gradle.internal.http.socketTimeout =120000
You can’t perform that action at this time.
0 commit comments