Skip to content

Commit

Permalink
Bump kotlinpoet from 1.12.0 to 1.13.2 (#28)
Browse files Browse the repository at this point in the history
Bumps `kotlinpoet` from 1.12.0 to 1.13.2.

Updates `com.squareup:kotlinpoet` from 1.12.0 to 1.13.2
- [Release notes](https://github.com/square/kotlinpoet/releases)
- [Changelog](https://github.com/square/kotlinpoet/blob/master/docs/changelog.md)
- [Commits](square/kotlinpoet@1.12.0...1.13.2)

Updates `com.squareup:kotlinpoet-ksp` from 1.12.0 to 1.13.2
- [Release notes](https://github.com/square/kotlinpoet/releases)
- [Changelog](https://github.com/square/kotlinpoet/blob/master/docs/changelog.md)
- [Commits](square/kotlinpoet@1.12.0...1.13.2)

---
updated-dependencies:
- dependency-name: com.squareup:kotlinpoet
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: com.squareup:kotlinpoet-ksp
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
dependabot[bot] authored May 7, 2023
1 parent eac112c commit 4d61dd5
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,5 @@ public object AutoInitializeOuterSomeThingModule {
@Provides
@IntoSet
public fun provideSomeThingAsInitializable(someThing: Outer.SomeThing): Initializable =
someThing.withPriority(4711)
someThing.withPriority(4_711)
}
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,5 @@ public object AutoInitializeOuterSomeThingModule {
@Provides
@IntoSet
public fun provideSomeThingAsInitializable(lazySomeThing: Lazy<Outer.SomeThing>): Initializable =
lazySomeThing.asInitializable(priority = 4711)
lazySomeThing.asInitializable(priority = 4_711)
}
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,5 @@ public object AutoInitializeOuterSomeThingModule {
@Provides
@IntoSet
public fun provideSomeThingAsInitializable(lazySomeThing: Lazy<Outer.SomeThing>): Initializable =
lazySomeThing.asInitializable(priority = 4711)
lazySomeThing.asInitializable(priority = 4_711)
}
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ ksp = "1.8.21-1.0.11"
android-minSdk = "14"
android-compileSdk = "33"
androidx-test = "1.5.0"
kotlinpoet = "1.12.0"
kotlinpoet = "1.13.2"

[plugins]
dagger-hilt = { id = "com.google.dagger.hilt.android", version.ref = "dagger" }
Expand Down

0 comments on commit 4d61dd5

Please sign in to comment.