Auto Service Ksp Versions Save

A KSP implementation of AutoService

1.1.0

11 months ago
  • Fix: The processor no longer errors if @AutoService isn't found on the classpath. By default it will log to info level and to warn level if verbose mode is enabled.
  • Update auto-service annotations to 1.1.1.
  • Update Kotlin to 1.8.22.
  • Update KSP to 1.8.22-1.0.11.
  • Update Guava to 32.1.1-jre.
  • Update KotlinPoet to 1.14.2.

What's Changed

New Contributors

Full Changelog: https://github.com/ZacSweers/auto-service-ksp/compare/1.0.0...1.1.0

1.0.0

2 years ago
  • Stable release!
  • Update to KSP 1.5.30-1.0.0.

0.5.5

2 years ago
  • Update KSP to 1.5.30-1.0.0-beta09.
  • Fix: Java sources are now supported.

Thanks to @ganadist for contributing to this release!

0.5.4

2 years ago
  • Update to KSP 1.5.30-1.0.0-beta08.
  • Update to Kotlin 1.5.30.

0.5.3

2 years ago
  • Update to KSP 1.5.21-1.0.0-beta05.
  • Update to Kotlin 1.5.21.
  • Update to Dokka 1.5.0.
  • Update to KotlinPoet 1.9.0.
  • Test against JDK 17 early access previews.

0.5.2

3 years ago
  • Update to KSP 1.5.10-1.0.0-beta01
  • Update to Kotlin 1.5.10

0.5.1

3 years ago

Update to KSP 1.5.0-1.0.0-alpha10

0.3.3

3 years ago
  • Updated to KSP 1.4.30-1.0.0-alpha04
  • Errors are now reported via KSP's error logger.

0.3.1

3 years ago
  • Updated to KSP 1.4.20-dev-experimental-20210111

0.3.0

3 years ago
  • Updated to KSP 1.4.20-dev-experimental-20210107

  • The Gradle plugin is no more! Now that KSP natively handles including generated resources, it is no longer needed. Add auto-service-ksp and auto-service-annotations dependencies directly now:

    dependencies {
      ksp("dev.zacsweers.autoservice:auto-service-ksp:<auto-service-ksp version>")
      implementation("com.google.auto.service:auto-service-annotations:<auto-service version>")
    }