Skip to content

Commit 317e18e

Browse files
committed
prepare 1.3.1
1 parent 0197953 commit 317e18e

File tree

3 files changed

+11
-3
lines changed

3 files changed

+11
-3
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
## 1.3.1 - Jan 12, 2022
2+
3+
- Update `DefaultViewBindingDialogFragment`'s implementation.
4+
- Remove `@PublishedApi` on `GetInflateMethod`.
5+
- The message of thrown exceptions is more friendly.
6+
- Fix a `NullPointerException` when `binding` is `null` and `onDestroyView` is not `null`.
7+
- Refactor implementations: replace `anonymous functions` by `SAM conversions`.
8+
19
## 1.3.0 - Dec 24, 2021
210

311
- Change `targetSdkVersion` and `compileSdkVersion` to 31.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ allprojects {
5454

5555
```kotlin
5656
dependencies {
57-
implementation("com.github.hoc081098:ViewBindingDelegate:1.3.0")
57+
implementation("com.github.hoc081098:ViewBindingDelegate:1.3.1")
5858
}
5959
```
6060

app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ android {
1111
applicationId "com.hoc081098.example"
1212
minSdkVersion 14
1313
targetSdkVersion 31
14-
versionCode (1 * 10_000 + 3 * 100 + 0)
15-
versionName "1.3.0"
14+
versionCode (1 * 10_000 + 3 * 100 + 1)
15+
versionName "1.3.1"
1616

1717
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
1818
}

0 commit comments

Comments
 (0)