Skip to content

Commit b94c1ba

Browse files
chore(testkit): prepare for testkit-plugin release 0.17.
1 parent 31aca91 commit b94c1ba

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

testkit/gradle-testkit-plugin/CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
Gradle TestKit Plugin Changelog
22

3+
# Version 0.17
4+
* [Feat] Update default support lib version to 0.21.
5+
36
# Version 0.16
47
* [Fix] set apiVersion and languageVersion to 2.0 for Gradle 8.11 support.
58

testkit/gradle-testkit-plugin/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ plugins {
55
id("com.github.gmazzo.buildconfig")
66
}
77

8-
version = "0.17-SNAPSHOT"
8+
version = "0.17"
99
val isSnapshot: Boolean = version.toString().endsWith("SNAPSHOT")
1010
val isRelease: Boolean = !isSnapshot
1111

testkit/gradle-testkit-plugin/src/main/kotlin/com/autonomousapps/GradleTestKitSupportExtension.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -261,7 +261,7 @@ public abstract class GradleTestKitSupportExtension(private val project: Project
261261
internal companion object {
262262

263263
// TODO(tsr): can we inject these values so they're not hardcoded?
264-
private const val DEFAULT_SUPPORT_VERSION = "0.20"
264+
private const val DEFAULT_SUPPORT_VERSION = "0.21"
265265
private const val DEFAULT_TRUTH_VERSION = "1.6.1"
266266

267267
fun create(project: Project): GradleTestKitSupportExtension {

0 commit comments

Comments
 (0)