Skip to content

Commit

Permalink
Releasing v2.5.0-beta06
Browse files Browse the repository at this point in the history
  • Loading branch information
RBusarow committed Apr 16, 2024
1 parent 15db887 commit 464f0b6
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 7 deletions.
27 changes: 21 additions & 6 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,6 @@

### Deprecated

- `ContributesBinding.priority` has been deprecated in favor of the int-value-based `ContributesBinding.priority`. This allows for more granular prioritization, rather than just the three enum entries that `ContributesBinding.Priority` offered.

> [!IMPORTANT]
> IDE auto-replace can auto-replace the enum entry with the corresponding integer, but not the named argument. Automatically-migrated code may wind up with something like `priority = RANK_NORMAL`. This is an IntelliJ limitation.
### Removed

### Fixed
Expand All @@ -23,6 +18,25 @@

### Other Notes & Contributions

## [2.5.0-beta06] - 2024-04-16

### Deprecated

- `ContributesBinding.priority` has been deprecated in favor of the int-value-based `ContributesBinding.priority`. This allows for more granular prioritization, rather than just the three enum entries that `ContributesBinding.Priority` offered.

> [!IMPORTANT]
> IDE auto-replace can auto-replace the enum entry with the corresponding integer, but not the named argument. Automatically-migrated code may wind up with something like `priority = RANK_NORMAL`. This is an IntelliJ limitation.
### Removed

### Fixed

* pass files with only top-level function/property declarations to `CodeGenerator` implementations ([#956](https://github.com/square/anvil/pull/956))
* rename the new int-based priority to `rank`, restore the enum to `priority` ([#957](https://github.com/square/anvil/pull/957))
* Fix private targets API use ([#961](https://github.com/square/anvil/pull/961))
* Fix KSP2 fallback in mangle name checks ([#962](https://github.com/square/anvil/pull/962))
* Simplify redundant logic ([#963](https://github.com/square/anvil/pull/963))

## [2.5.0-beta05] - 2024-04-09

### Added
Expand Down Expand Up @@ -711,7 +725,8 @@



[Unreleased]: https://github.com/square/anvil/compare/v2.5.0-beta05...HEAD
[Unreleased]: https://github.com/square/anvil/compare/v2.5.0-beta06...HEAD
[2.5.0-beta06]: https://github.com/square/anvil/releases/tag/v2.5.0-beta06
[2.5.0-beta05]: https://github.com/square/anvil/releases/tag/v2.5.0-beta05
[2.5.0-beta04]: https://github.com/square/anvil/releases/tag/v2.5.0-beta04
[2.5.0-beta03]: https://github.com/square/anvil/releases/tag/v2.5.0-beta03
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
GROUP=com.squareup.anvil

# When updating this, make sure to also update the parallel release versions in release.yml
VERSION_NAME=2.5.0-beta06-SNAPSHOT
VERSION_NAME=2.5.0-beta06

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
Expand Down

0 comments on commit 464f0b6

Please sign in to comment.