Skip to content

Commit 44963d2

Browse files
committed
Prepare version 2.8.0
1 parent 5d26759 commit 44963d2

File tree

4 files changed

+19
-3
lines changed

4 files changed

+19
-3
lines changed

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,19 @@
66
Nothing yet!
77

88

9+
## [2.8.0] *(2025-09-04)*
10+
[2.8.0]: https://github.com/cashapp/burst/releases/tag/2.8.0
11+
12+
**Added**
13+
14+
* `@InterceptTest` now supports coroutines tests via the `CoroutineTestInterceptor` interface in our new `burst-coroutines` artifact. Note that you cannot use both `CoroutineTestInterceptor` and `TestInterceptor` in the same test.
15+
16+
17+
**Fixed**
18+
19+
* Return a promise in `runTest()` coroutines tests on Kotlin/JS. We had a bug where Burst returned `Unit` for these, which caused tests to complete prematurely.
20+
21+
922
## [2.7.1] *(2025-08-29)*
1023
[2.7.1]: https://github.com/cashapp/burst/releases/tag/2.7.1
1124

README.md

Lines changed: 2 additions & 2 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.7.1")
220+
testImplementation("app.cash.burst:burst-coroutines:2.8.0")
221221
...
222222
}
223223
```
@@ -249,7 +249,7 @@ buildscript {
249249
mavenCentral()
250250
}
251251
dependencies {
252-
classpath("app.cash.burst:burst-gradle-plugin:2.7.1")
252+
classpath("app.cash.burst:burst-gradle-plugin:2.8.0")
253253
}
254254
}
255255
```

RELEASING.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,9 @@ Releasing
1616
sed -i "" \
1717
"s/VERSION_NAME=.*/VERSION_NAME=$RELEASE_VERSION/g" \
1818
gradle.properties
19+
sed -i "" \
20+
"s/\"app.cash.burst:\([^\:]*\):[^\"]*\"/\"app.cash.burst:\1:$RELEASE_VERSION\"/g" \
21+
`find . -name "*.md"`
1922
2023
git commit -am "Prepare version $RELEASE_VERSION"
2124
git tag -am "Version $RELEASE_VERSION" $RELEASE_VERSION

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.8.0-SNAPSHOT
6+
VERSION_NAME=2.8.0
77

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

0 commit comments

Comments
 (0)