Skip to content

Commit

Permalink
prepare 1.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
hoc081098 committed Jan 11, 2022
1 parent 0197953 commit 317e18e
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
## 1.3.1 - Jan 12, 2022

- Update `DefaultViewBindingDialogFragment`'s implementation.
- Remove `@PublishedApi` on `GetInflateMethod`.
- The message of thrown exceptions is more friendly.
- Fix a `NullPointerException` when `binding` is `null` and `onDestroyView` is not `null`.
- Refactor implementations: replace `anonymous functions` by `SAM conversions`.

## 1.3.0 - Dec 24, 2021

- Change `targetSdkVersion` and `compileSdkVersion` to 31.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ allprojects {

```kotlin
dependencies {
implementation("com.github.hoc081098:ViewBindingDelegate:1.3.0")
implementation("com.github.hoc081098:ViewBindingDelegate:1.3.1")
}
```

Expand Down
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ android {
applicationId "com.hoc081098.example"
minSdkVersion 14
targetSdkVersion 31
versionCode (1 * 10_000 + 3 * 100 + 0)
versionName "1.3.0"
versionCode (1 * 10_000 + 3 * 100 + 1)
versionName "1.3.1"

testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
Expand Down

0 comments on commit 317e18e

Please sign in to comment.