diff --git a/CHANGELOG.md b/CHANGELOG.md index 2f6ec46..3fe6d53 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [Unreleased] + +## [v0.4.0] ### Changed - Add guard on what `Context` can be used to initialize `FlexibleHilt` @@ -24,7 +26,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [v1.0.0] Initial release -[Unreleased]: https://github.com/dewantawsif/flexible-hilt/compare/v0.3.0...HEAD +[Unreleased]: https://github.com/dewantawsif/flexible-hilt/compare/v0.4.0...HEAD +[v0.4.0]: https://github.com/dewantawsif/flexible-hilt/compare/v0.3.0...v0.4.0 [v0.3.0]: https://github.com/dewantawsif/flexible-hilt/compare/v0.2.1...v0.3.0 [v0.2.1]: https://github.com/dewantawsif/flexible-hilt/compare/v0.1.1...v0.2.1 [v0.1.1]: https://github.com/dewantawsif/flexible-hilt/compare/e64922653292368f7d74ec0d92e4e80ad44b95eb...v0.1.1 diff --git a/README.md b/README.md index 0ea8438..b9f472a 100644 --- a/README.md +++ b/README.md @@ -5,12 +5,12 @@ The library requires your app's `minSdk` to be 21+ ### Add dependencies ```kotlin plugiin { - id("com.google.devtools.ksp") version "1.9.20-1.0.14" + id("com.google.devtools.ksp") version "2.0.0-1.0.21" } dependencies { - implementation("me.tawsif.hilt:flexible-hilt-core:0.3.0") - ksp("me.tawsif.hilt:flexible-hilt-compiler:0.3.0") + implementation("me.tawsif.hilt:flexible-hilt-core:0.4.0") + ksp("me.tawsif.hilt:flexible-hilt-compiler:0.4.0") } ```