File tree Expand file tree Collapse file tree 3 files changed +13
-2
lines changed
redacted-compiler-plugin-gradle Expand file tree Collapse file tree 3 files changed +13
-2
lines changed Original file line number Diff line number Diff line change 1
1
Changelog
2
2
=========
3
3
4
+ 1.8.1
5
+ -----
6
+
7
+ _ 2024-04-26_
8
+
9
+ - Allow ` @Unredacted ` to be applied to a class, only when a supertype is ` @Redacted `
10
+ - Allow ` @Redacted ` supertypes to be inherited by objects, only when the child does not implement a custom ` toString ` method
11
+ - Fail compilation when ` @Unredacted ` and ` @Redacted ` are applied to the same class
12
+
13
+ Special thanks to [ @DrewCarlson ] ( https://github.com/DrewCarlson ) for contributing to this release!
14
+
4
15
1.8.0
5
16
-----
6
17
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ kotlin.compiler.keepIncrementalCompilationCachesInMemory=true
12
12
kotlin.compiler.preciseCompilationResultsBackup =true
13
13
14
14
GROUP =dev.zacsweers.redacted
15
- VERSION_NAME =1.9.0-SNAPSHOT
15
+ VERSION_NAME =1.8.1
16
16
POM_DESCRIPTION =A Kotlin compiler plugin that generates redacted toString() implementations.
17
17
POM_URL =https://github.com/ZacSweers/redacted-compiler-plugin/
18
18
POM_SCM_URL =https://github.com/ZacSweers/redacted-compiler-plugin/
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ POM_ARTIFACT_ID=redacted-compiler-plugin-gradle
3
3
POM_PACKAGING =jar
4
4
5
5
GROUP =dev.zacsweers.redacted
6
- VERSION_NAME =1.9.0-SNAPSHOT
6
+ VERSION_NAME =1.8.1
7
7
POM_DESCRIPTION =A Kotlin compiler plugin that generates redacted toString() implementations.
8
8
POM_URL =https://github.com/ZacSweers/redacted-compiler-plugin/
9
9
POM_SCM_URL =https://github.com/ZacSweers/redacted-compiler-plugin/
You can’t perform that action at this time.
0 commit comments