Skip to content

Commit 02b22b4

Browse files
dependabot[bot]tschuchortdev
authored andcommitted
Bump ksp_version from 1.5.0-1.0.0-alpha09 to 1.5.0-1.0.0-alpha10
Bumps `ksp_version` from 1.5.0-1.0.0-alpha09 to 1.5.0-1.0.0-alpha10. Updates `symbol-processing-api` from 1.5.0-1.0.0-alpha09 to 1.5.0-1.0.0-alpha10 - [Release notes](https://github.com/google/ksp/releases) - [Commits](google/ksp@1.5.0-1.0.0-alpha09...1.5.0-1.0.0-alpha10) Updates `symbol-processing` from 1.5.0-1.0.0-alpha09 to 1.5.0-1.0.0-alpha10 - [Release notes](https://github.com/google/ksp/releases) - [Commits](google/ksp@1.5.0-1.0.0-alpha09...1.5.0-1.0.0-alpha10) Signed-off-by: dependabot[bot] <support@github.com>
1 parent 8d31613 commit 02b22b4

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

ksp/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
buildscript {
2-
ext.ksp_version='1.5.0-1.0.0-alpha09'
2+
ext.ksp_version='1.5.0-1.0.0-alpha10'
33
}
44

55
dependencies {

ksp/src/test/kotlin/com/tschuchort/compiletesting/KspTest.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ class KspTest {
7777
symbolProcessorProviders = listOf(processorProviderOf { _, _, codeGenerator, logger ->
7878
object : AbstractTestSymbolProcessor(codeGenerator) {
7979
override fun process(resolver: Resolver): List<KSAnnotated> {
80-
val symbols = resolver.getSymbolsWithAnnotation("foo.bar.TestAnnotation")
80+
val symbols = resolver.getSymbolsWithAnnotation("foo.bar.TestAnnotation").toList()
8181
if (symbols.isNotEmpty()) {
8282
assertThat(symbols.size).isEqualTo(1)
8383
val klass = symbols.first()

0 commit comments

Comments
 (0)