Skip to content

Commit

Permalink
Update README and CHANGELOG [ci skip]
Browse files Browse the repository at this point in the history
  • Loading branch information
mars885 committed Aug 3, 2024
1 parent a7208b3 commit 68e9df0
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 6 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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")
}
````

Expand All @@ -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")
}
````

Expand All @@ -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")
}
````

Expand Down

0 comments on commit 68e9df0

Please sign in to comment.