From 5e2ae927f85741866f9624af37d08b490b275687 Mon Sep 17 00:00:00 2001 From: Jesse Wilson Date: Fri, 24 Jan 2025 11:12:25 -0500 Subject: [PATCH] Prepare version 2.4.0 --- CHANGELOG.md | 8 ++++++++ README.md | 4 ++-- gradle.properties | 2 +- 3 files changed, 11 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 348a4cf..ba2e3a1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,14 @@ +## [2.4.0] *(2025-01-24)* +[2.4.0]: https://github.com/cashapp/burst/releases/tag/2.4.0 + +**Fixed** + + * Don't fail the compile when a `@Burst` class is subclassed. We had a bug where overridden tests were incorrectly being processed by Burst. + + ## [2.3.0] *(2025-01-22)* [2.3.0]: https://github.com/cashapp/burst/releases/tag/2.3.0 diff --git a/README.md b/README.md index 745de43..c3f0cfc 100644 --- a/README.md +++ b/README.md @@ -109,7 +109,7 @@ buildscript { mavenCentral() } dependencies { - classpath("app.cash.burst:burst-gradle-plugin:2.3.0") + classpath("app.cash.burst:burst-gradle-plugin:2.4.0") } } ``` @@ -130,7 +130,7 @@ certain versions of Kotlin. | Kotlin | Burst | |-----------------|---------------| -| 2.1.0 | 2.2.0 - 2.3.0 | +| 2.1.0 | 2.2.0 - 2.4.0 | | 2.0.20 - 2.0.21 | 0.1.0 - 2.1.0 | Kotlin versions newer than those listed may be supported but have not been tested. diff --git a/gradle.properties b/gradle.properties index ef93657..deec15d 100644 --- a/gradle.properties +++ b/gradle.properties @@ -3,6 +3,6 @@ org.gradle.jvmargs=-Xmx1024m -Dfile.encoding=UTF-8 org.gradle.parallel=true # HEY! If you change the major version here be sure to update release.yaml doc target folder! -VERSION_NAME=2.4.0-SNAPSHOT +VERSION_NAME=2.4.0 systemProp.org.gradle.internal.http.socketTimeout=120000