This repository was archived by the owner on Oct 17, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +10
-4
lines changed Expand file tree Collapse file tree 3 files changed +10
-4
lines changed Original file line number Diff line number Diff line change 2
2
3
3
## [ Unreleased]
4
4
5
+ ## [ 1.0.1] - 2022-01-19
6
+
7
+ * Fix: Sort methods in generated module code by name to ensure compatiblity with Gradle remote caching.
8
+
9
+
5
10
## [ 1.0.0] - 2021-03-27
6
11
7
12
Change package name and Maven groupId to ` app.cash ` .
@@ -151,7 +156,8 @@ Initial preview release.
151
156
152
157
153
158
154
- [ Unreleased ] : https://github.com/cashapp/InflationInject/compare/1.0.0...HEAD
159
+ [ Unreleased ] : https://github.com/cashapp/InflationInject/compare/1.0.1...HEAD
160
+ [ 1.0.1 ] : https://github.com/cashapp/InflationInject/releases/tag/1.0.1
155
161
[ 1.0.0 ] : https://github.com/cashapp/InflationInject/releases/tag/1.0.0
156
162
[ 0.9.1 ] : https://github.com/cashapp/InflationInject/releases/tag/0.9.1
157
163
[ 0.9.0 ] : https://github.com/cashapp/InflationInject/releases/tag/0.9.0
Original file line number Diff line number Diff line change @@ -65,8 +65,8 @@ repositories {
65
65
mavenCentral()
66
66
}
67
67
dependencies {
68
- implementation 'app.cash.inject:inflation-inject:1.0.0 '
69
- annotationProcessor 'app.cash.inject:inflation-inject-processor:1.0.0 '
68
+ implementation 'app.cash.inject:inflation-inject:1.0.1 '
69
+ annotationProcessor 'app.cash.inject:inflation-inject-processor:1.0.1 '
70
70
}
71
71
```
72
72
Original file line number Diff line number Diff line change 1
1
GROUP =app.cash.inject
2
- VERSION_NAME =1.1.0-SNAPSHOT
2
+ VERSION_NAME =1.0.1
3
3
4
4
POM_DESCRIPTION =Constructor-inject views during layout inflation
5
5
You can’t perform that action at this time.
0 commit comments