Skip to content

Commit fa31443

Browse files
committed
Releasing v2.5.0-beta02
1 parent b44fe9b commit fa31443

File tree

2 files changed

+31
-2
lines changed

2 files changed

+31
-2
lines changed

CHANGELOG.md

+30-1
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,34 @@
1818

1919
### Other Notes & Contributions
2020

21+
## [2.5.0-beta02] - 2024-02-23
22+
23+
### Fixed
24+
- Binding supertype which is narrower than return type is wrongly allowed by @IlyaGulya in ([#833](https://github.com/square/anvil/pull/833))
25+
- Don't cache the `projectDir` or `binaryFile` as part of `GeneratedFileCache` by @RBusarow in ([#883](https://github.com/square/anvil/pull/883))
26+
- Add restored-from-cache, previously-generated files to analysis results after code generation by @RBusarow in ([#882](https://github.com/square/anvil/pull/882))
27+
28+
### Other Notes & Contributions
29+
- @IlyaGulya made their first contribution in ([#833](https://github.com/square/anvil/pull/833))
30+
31+
### Added
32+
- Incremental compilation and build caching fixes ([#836](https://github.com/square/anvil/pull/836))
33+
- Configuration options can now be set via Gradle properties ([#851](https://github.com/square/anvil/pull/851))
34+
35+
### Changed
36+
- Upgrade Kotlin to `1.9.22` ([#814](https://github.com/square/anvil/pull/814))
37+
- don't leak Anvil's annotation artifacts to the target project's compile classpath ([#822](https://github.com/square/anvil/pull/822))
38+
- Update to dagger 2.50 ([#830](https://github.com/square/anvil/pull/830))
39+
40+
### Removed
41+
- Drop Kotlin 1.8 support ([#841](https://github.com/square/anvil/pull/841))
42+
43+
### Custom Code Generator
44+
- The `GeneratedFile` result type has been deprecated in favor of `GeneratedFileWithSources`. This new type allows for precise tracking of the generated files, which in turn drastically improves incremental compilation performance ([#693](https://github.com/square/anvil/pull/693)).
45+
46+
### Other Notes & Contributions
47+
- Support KSP in ContributesSubcomponentGenerator ([#828](https://github.com/square/anvil/pull/828))
48+
2149
## [2.5.0-beta01] - 2024-02-14
2250

2351
### Added
@@ -657,7 +685,8 @@
657685
658686
659687
660-
[Unreleased]: https://github.com/square/anvil/compare/v2.5.0-beta01...HEAD
688+
[Unreleased]: https://github.com/square/anvil/compare/v2.5.0-beta02...HEAD
689+
[2.5.0-beta02]: https://github.com/square/anvil/releases/tag/v2.5.0-beta02
661690
[2.5.0-beta01]: https://github.com/square/anvil/releases/tag/v2.5.0-beta01
662691
[2.4.9]: https://github.com/square/anvil/releases/tag/v2.4.9
663692
[2.4.8]: https://github.com/square/anvil/releases/tag/v2.4.8

gradle.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
GROUP=com.squareup.anvil
22

33
# When updating this, make sure to also update the parallel release versions in release.yml & ci.yml
4-
VERSION_NAME=2.5.0-beta02-SNAPSHOT
4+
VERSION_NAME=2.5.0-beta02
55

66
POM_DESCRIPTION=A Kotlin compiler plugin to make dependency injection with Dagger 2 easier by automatically merging Dagger modules and component interfaces.
77
POM_INCEPTION_YEAR=2020

0 commit comments

Comments
 (0)