From 4218e9e33b875af1f20586e92e5a4c1481e1d91a Mon Sep 17 00:00:00 2001 From: Zac Sweers Date: Sat, 31 Aug 2024 15:10:17 -0400 Subject: [PATCH] Prepare for release 0.3.0. --- CHANGELOG.md | 5 +++++ gradle.properties | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index eb3b59e1f..7581b4917 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,11 @@ **Unreleased** -------------- +0.3.0 +----- + +_2024-08-22_ + - **New**: Add option to disable contributes subcomponent handling. This can be useful if working in a codebase or project that doesn't use `@ContributeSubcomponent` and thus doesn't need to scan the classpath for them while merging. More details can be found in the `## Options` section of `FORK.md`. - **Enhancement**: Improve hint caching during contribution merging. Hints from the classpath are now only searched for once rather than every round. - **Enhancement**: Improve error messaging when class lookups fail. diff --git a/gradle.properties b/gradle.properties index 95e4558cc..94520b82e 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,7 +1,7 @@ GROUP=dev.zacsweers.anvil # When updating this, make sure to also update the parallel release versions in release.yml -VERSION_NAME=1.0.0-SNAPSHOT +VERSION_NAME=0.3.0 POM_DESCRIPTION=A Kotlin compiler plugin to make dependency injection with Dagger 2 easier by automatically merging Dagger modules and component interfaces. POM_INCEPTION_YEAR=2020