Skip to content

Commit 998b8d8

Browse files
Update README.md
1 parent 5872899 commit 998b8d8

File tree

1 file changed

+3
-6
lines changed

1 file changed

+3
-6
lines changed

README.md

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ Add dependency to your module's `build.gradle` file:
9797
```Groovy
9898
dependencies {
9999
// ...
100-
implementation 'com.github.tschuchortdev:kotlin-compile-testing:1.2.9'
100+
implementation 'com.github.tschuchortdev:kotlin-compile-testing:1.2.10'
101101
}
102102
```
103103

@@ -109,22 +109,19 @@ Kotlin-Compile-Testing is compatible with all _local_ compiler versions. It does
109109

110110
However, if your project or any of its dependencies depend directly on compiler artifacts such as `kotlin-compiler-embeddable` or `kotlin-annotation-processing-embeddable` then they have to be the same version as the one used by Kotlin-Compile-Testing or there will be a transitive dependency conflict.
111111

112-
- Current `kotlin-compiler-embeddable` version: `1.3.72`
112+
- Current `kotlin-compiler-embeddable` version: `1.4.0`
113113

114114
Because the internal APIs of the Kotlin compiler often change between versions, we can only support one `kotlin-compiler-embeddable` version at a time.
115115

116116
## Kotlin Symbol Processing API Support
117117
[Kotlin Symbol Processing (KSP)](https://goo.gle/ksp) is a new annotation processing pipeline that builds on top of the
118118
plugin architecture of the Kotlin Compiler, instead of delegating to javac as `kapt` does.
119119

120-
**Note:** KSP is currently in active development and requires Kotlin 1.4 hence its support is kept separate from the
121-
main project until it becomes stable. All KSP releases are experimental.
122-
123120
To test KSP processors, you need to use the KSP dependency:
124121

125122
```Groovy
126123
dependencies {
127-
implementation 'com.github.tschuchortdev:kotlin-compile-testing-ksp:1.2.9'
124+
implementation 'com.github.tschuchortdev:kotlin-compile-testing-ksp:1.2.10'
128125
}
129126
```
130127

0 commit comments

Comments
 (0)