diff --git a/CHANGELOG.md b/CHANGELOG.md index 1e57fd5..e8dc5fc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,12 @@ ## Unreleased +## Version 0.5.0 *(2024-10-17)* + + * Fix: Apply specializations for Kotlin/JS and Kotlin/Native. We had bugs that caused our compiler + plug-in to skip non-JVM platforms. + + ## Version 0.4.0 *(2024-10-16)* * New: Require JDK 1.8+. diff --git a/README.md b/README.md index 2141245..e955d76 100644 --- a/README.md +++ b/README.md @@ -93,7 +93,7 @@ buildscript { mavenCentral() } dependencies { - classpath("app.cash.burst:burst-gradle-plugin:0.4.0") + classpath("app.cash.burst:burst-gradle-plugin:0.5.0") } } ``` diff --git a/gradle.properties b/gradle.properties index d88a6be..69c6cfe 100644 --- a/gradle.properties +++ b/gradle.properties @@ -2,6 +2,6 @@ org.gradle.caching=true org.gradle.jvmargs=-Xmx1024m -Dfile.encoding=UTF-8 org.gradle.parallel=true -VERSION_NAME=2.0.0-SNAPSHOT +VERSION_NAME=0.5.0 systemProp.org.gradle.internal.http.socketTimeout=120000