diff --git a/CHANGELOG.md b/CHANGELOG.md index 4f3dddf..8205c6b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,13 @@ Change Log ========== +## Version 1.1.3 *(2024-08-04)* + +* Upgrade: [Kotlin 1.9.25](https://github.com/JetBrains/kotlin/releases/tag/v1.9.25). +* Upgrade: [KSP 1.9.25](https://github.com/google/ksp/releases/tag/1.9.25-1.0.20). +* Upgrade: [Dagger Hilt 2.51.1](https://github.com/google/dagger/releases/tag/dagger-2.51.1). +* Upgrade of other deps: [PR](https://github.com/mars885/hilt-binder/pull/49). + ## Version 1.1.2 *(2021-10-30)* * Fix: Revert back to Java 8 as the target version of the libraries & the project. diff --git a/README.md b/README.md index 2192c77..b16b7f4 100644 --- a/README.md +++ b/README.md @@ -62,8 +62,8 @@ If you are using pure Java (no Kotlin code), add the following to your module-le ````kotlin dependencies { - implementation("com.paulrybitskyi:hilt-binder:1.1.2") - annotationProcessor("com.paulrybitskyi:hilt-binder-compiler:1.1.2") + implementation("com.paulrybitskyi:hilt-binder:1.1.3") + annotationProcessor("com.paulrybitskyi:hilt-binder-compiler:1.1.3") } ```` @@ -77,8 +77,8 @@ plugins { } dependencies { - implementation("com.paulrybitskyi:hilt-binder:1.1.2") - kapt("com.paulrybitskyi:hilt-binder-compiler:1.1.2") + implementation("com.paulrybitskyi:hilt-binder:1.1.3") + kapt("com.paulrybitskyi:hilt-binder-compiler:1.1.3") } ```` @@ -105,8 +105,8 @@ plugins { } dependencies { - implementation("com.paulrybitskyi:hilt-binder:1.1.2") - ksp("com.paulrybitskyi:hilt-binder-compiler:1.1.2") + implementation("com.paulrybitskyi:hilt-binder:1.1.3") + ksp("com.paulrybitskyi:hilt-binder-compiler:1.1.3") } ````