diff --git a/CHANGELOG.md b/CHANGELOG.md index e3f00e6..4949f6e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,11 @@ ## [Unreleased] +## [1.0.1] - 2022-01-19 + + * Fix: Sort methods in generated module code by name to ensure compatiblity with Gradle remote caching. + + ## [1.0.0] - 2021-03-27 Change package name and Maven groupId to `app.cash`. @@ -151,7 +156,8 @@ Initial preview release. -[Unreleased]: https://github.com/cashapp/InflationInject/compare/1.0.0...HEAD +[Unreleased]: https://github.com/cashapp/InflationInject/compare/1.0.1...HEAD +[1.0.1]: https://github.com/cashapp/InflationInject/releases/tag/1.0.1 [1.0.0]: https://github.com/cashapp/InflationInject/releases/tag/1.0.0 [0.9.1]: https://github.com/cashapp/InflationInject/releases/tag/0.9.1 [0.9.0]: https://github.com/cashapp/InflationInject/releases/tag/0.9.0 diff --git a/README.md b/README.md index e679024..ad4dd03 100644 --- a/README.md +++ b/README.md @@ -65,8 +65,8 @@ repositories { mavenCentral() } dependencies { - implementation 'app.cash.inject:inflation-inject:1.0.0' - annotationProcessor 'app.cash.inject:inflation-inject-processor:1.0.0' + implementation 'app.cash.inject:inflation-inject:1.0.1' + annotationProcessor 'app.cash.inject:inflation-inject-processor:1.0.1' } ``` diff --git a/gradle.properties b/gradle.properties index 9140054..03e6a7d 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,5 +1,5 @@ GROUP=app.cash.inject -VERSION_NAME=1.1.0-SNAPSHOT +VERSION_NAME=1.0.1 POM_DESCRIPTION=Constructor-inject views during layout inflation