From b9febe83184849ff69f149880a537b4333821a57 Mon Sep 17 00:00:00 2001 From: Ilya Gulya Date: Sat, 14 Dec 2024 14:33:20 +0500 Subject: [PATCH] Release 0.3.0-beta02 --- CHANGELOG.md | 14 ++++++++++---- README.md | 14 +++++++------- gradle.properties | 2 +- 3 files changed, 18 insertions(+), 12 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 847d279..347684a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,22 +6,28 @@ ### Changed -- Upgraded Dagger to `2.53.1` - ### Deprecated ### Removed ### Fixed -- Correctly defer symbols with unresolved references to the next KSP round (fixes [Issue #4](https://github.com/IlyaGulya/anvil-utils/issues/4)) - ### Security ### Custom Code Generator ### Other Notes & Contributions +## [0.3.0-beta02] - 2024-12-14 + +### Changed + +- Upgraded Dagger to `2.53.1` + +### Fixed + +- Correctly defer symbols with unresolved references to the next KSP round (fixes [Issue #4](https://github.com/IlyaGulya/anvil-utils/issues/4)) + ## [0.3.0-beta01] - 2024-05-30 ### Changed diff --git a/README.md b/README.md index cf9cca1..866e137 100644 --- a/README.md +++ b/README.md @@ -10,11 +10,11 @@ Dagger and Square Anvil. ## Compatibility Map -| Anvil Utils Version | Anvil Version | Plugin ID | -|---------------------|---------------|----------------------| -| 0.1.0 | 2.4.2 | com.squareup.anvil | -| 0.2.0-beta01 | 2.5.0-beta09 | com.squareup.anvil | -| 0.3.0-beta01 | 0.3.3 | dev.zacsweers.anvil | +| Anvil Utils Version | Anvil Version | Plugin ID | +|------------------------|-----------------|----------------------| +| 0.1.0 | 2.4.2 | com.squareup.anvil | +| 0.2.0-beta01 | 2.5.0-beta09 | com.squareup.anvil | +| 0.3.0-beta02 and later | 0.3.3 and later | dev.zacsweers.anvil | ## Getting Started @@ -33,8 +33,8 @@ Dagger and Square Anvil. 4. Add the following dependencies to your project: ```kotlin dependencies { - implementation("me.gulya.anvil:annotations:0.3.0-beta01") - ksp("me.gulya.anvil:compiler:0.3.0-beta01") + implementation("me.gulya.anvil:annotations:0.3.0-beta02") + ksp("me.gulya.anvil:compiler:0.3.0-beta02") } ``` diff --git a/gradle.properties b/gradle.properties index 78aa335..f5b97f3 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,6 +1,6 @@ GROUP=me.gulya.anvil -VERSION_NAME=0.3.0-beta01 +VERSION_NAME=0.3.0-beta02 POM_DESCRIPTION=Anvil code generator allowing automatic generation of @AssistedFactory which is bound to some publish API POM_INCEPTION_YEAR=2024