Skip to content

Commit d7b5557

Browse files
committed
Prepare for release 1.14.0.
1 parent 081f909 commit d7b5557

File tree

4 files changed

+12
-6
lines changed

4 files changed

+12
-6
lines changed

CHANGELOG.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,14 @@ Changelog
44
**Unreleased**
55
--------------
66

7+
1.14.0
8+
------
9+
10+
_2025-06-23_
11+
712
- **Fix**: Check both the parameter and property declarations for redacted annotations. Depending on the specified annotation target of custom annotations, these may end up in different places.
8-
- Update Kotlin to `2.2.0`.
9-
- Build the Gradle plugin against Kotlin `2.0`.
13+
- Update Kotlin to `2.2.0`. This plugin version requires Kotlin `2.2.0` or later.
14+
- Update Gradle plugin to target Kotlin language version to `1.9` (requires Gradle 8.3+).
1015

1116
1.13.0
1217
------

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ org.jetbrains.dokka.experimental.gradle.pluginMode=V2Enabled
2222
org.jetbrains.dokka.experimental.gradle.pluginMode.noWarn=true
2323

2424
GROUP=dev.zacsweers.redacted
25-
VERSION_NAME=1.14.0-alpha01
25+
VERSION_NAME=1.14.0
2626
POM_DESCRIPTION=A Kotlin compiler plugin that generates redacted toString() implementations.
2727
POM_URL=https://github.com/ZacSweers/redacted-compiler-plugin/
2828
POM_SCM_URL=https://github.com/ZacSweers/redacted-compiler-plugin/

redacted-compiler-plugin-gradle/build.gradle.kts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,9 @@ tasks.withType<KotlinCompile>().configureEach {
3434
jvmTarget.set(libs.versions.jvmTarget.map(JvmTarget::fromTarget))
3535

3636
// Lower version for Gradle compat
37-
languageVersion.set(KotlinVersion.KOTLIN_2_0)
38-
apiVersion.set(KotlinVersion.KOTLIN_2_0)
37+
progressiveMode.set(false)
38+
@Suppress("DEPRECATION") languageVersion.set(KotlinVersion.KOTLIN_1_9)
39+
@Suppress("DEPRECATION") apiVersion.set(KotlinVersion.KOTLIN_1_9)
3940
}
4041
}
4142

redacted-compiler-plugin-gradle/gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ org.jetbrains.dokka.experimental.gradle.pluginMode=V2Enabled
1010
org.jetbrains.dokka.experimental.gradle.pluginMode.noWarn=true
1111

1212
GROUP=dev.zacsweers.redacted
13-
VERSION_NAME=1.14.0-alpha01
13+
VERSION_NAME=1.14.0
1414
POM_DESCRIPTION=A Kotlin compiler plugin that generates redacted toString() implementations.
1515
POM_URL=https://github.com/ZacSweers/redacted-compiler-plugin/
1616
POM_SCM_URL=https://github.com/ZacSweers/redacted-compiler-plugin/

0 commit comments

Comments
 (0)