Skip to content

Commit

Permalink
Prepare for release 1.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ansman committed Sep 21, 2024
1 parent 1d404fb commit 7027409
Show file tree
Hide file tree
Showing 118 changed files with 10,924 additions and 14 deletions.
24 changes: 12 additions & 12 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,34 +45,34 @@ dependencies {
// Set up your dagger dependencies and compiler
// Include this in kotlin or android modules
implementation("se.ansman.dagger.auto:core:1.3.0")
kapt("se.ansman.dagger.auto:compiler:1.3.0")
implementation("se.ansman.dagger.auto:core:1.4.0")
kapt("se.ansman.dagger.auto:compiler:1.4.0")
// If you're using KSP
ksp("se.ansman.dagger.auto:compiler:1.3.0")
ksp("se.ansman.dagger.auto:compiler:1.4.0")
// Include this in your app module
implementation("se.ansman.dagger.auto:android:1.3.0")
implementation("se.ansman.dagger.auto:android:1.4.0")
// Or this in your library module
implementation("se.ansman.dagger.auto:android-api:1.3.0")
implementation("se.ansman.dagger.auto:android-api:1.4.0")
// Add these if you want to replace objects during tests
testImplementation("se.ansman.dagger.auto:android-testing:1.3.0")
kaptTest("se.ansman.dagger.auto:compiler:1.3.0")
testImplementation("se.ansman.dagger.auto:android-testing:1.4.0")
kaptTest("se.ansman.dagger.auto:compiler:1.4.0")
// If you're using KSP
kspTest("se.ansman.dagger.auto:compiler:1.3.0")
kspTest("se.ansman.dagger.auto:compiler:1.4.0")
// If you want to provide Retrofit services add the Retrofit dependency
implementation("se.ansman.dagger.auto:retrofit:1.3.0")
implementation("se.ansman.dagger.auto:retrofit:1.4.0")
// If you want to provide Ktorfit services add the Retrofit dependency
implementation("se.ansman.dagger.auto:ktorfit:1.3.0")
implementation("se.ansman.dagger.auto:ktorfit:1.4.0")
// If you want to inject a CoroutineScope into ViewModels add the ViewModel dependency
implementation("se.ansman.dagger.auto:androidx-viewmodel:1.3.0")
implementation("se.ansman.dagger.auto:androidx-viewmodel:1.4.0")
// If you want to automatically provide your Room DAOs add the Room dependency
implementation("se.ansman.dagger.auto:androidx-room:1.3.0")
implementation("se.ansman.dagger.auto:androidx-room:1.4.0")
}
```

Expand Down
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,5 @@ ksp.useKSP2=false

android.useAndroidX=true

version=1.4.0-SNAPSHOT
latestRelease=1.3.0
version=1.4.0
latestRelease=1.4.0
96 changes: 96 additions & 0 deletions src/doc/dokka/1.4.0/android/api/index.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 7027409

Please sign in to comment.