Skip to content

Commit

Permalink
Prepare for release 1.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
ansman committed May 8, 2024
1 parent 23199d8 commit 7daf8e8
Show file tree
Hide file tree
Showing 116 changed files with 10,691 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.2.0")
kapt("se.ansman.dagger.auto:compiler:1.2.0")
implementation("se.ansman.dagger.auto:core:1.2.1")
kapt("se.ansman.dagger.auto:compiler:1.2.1")
// If you're using KSP
ksp("se.ansman.dagger.auto:compiler:1.2.0")
ksp("se.ansman.dagger.auto:compiler:1.2.1")
// Include this in your app module
implementation("se.ansman.dagger.auto:android:1.2.0")
implementation("se.ansman.dagger.auto:android:1.2.1")
// Or this in your library module
implementation("se.ansman.dagger.auto:android-api:1.2.0")
implementation("se.ansman.dagger.auto:android-api:1.2.1")
// Add these if you want to replace objects during tests
testImplementation("se.ansman.dagger.auto:android-testing:1.2.0")
kaptTest("se.ansman.dagger.auto:compiler:1.2.0")
testImplementation("se.ansman.dagger.auto:android-testing:1.2.1")
kaptTest("se.ansman.dagger.auto:compiler:1.2.1")
// If you're using KSP
kspTest("se.ansman.dagger.auto:compiler:1.2.0")
kspTest("se.ansman.dagger.auto:compiler:1.2.1")
// If you want to provide Retrofit services add the Retrofit dependency
implementation("se.ansman.dagger.auto:retrofit:1.2.0")
implementation("se.ansman.dagger.auto:retrofit:1.2.1")
// If you want to provide Ktorfit services add the Retrofit dependency
implementation("se.ansman.dagger.auto:ktorfit:1.2.0")
implementation("se.ansman.dagger.auto:ktorfit:1.2.1")
// If you want to inject a CoroutineScope into ViewModels add the ViewModel dependency
implementation("se.ansman.dagger.auto:androidx-viewmodel:1.2.0")
implementation("se.ansman.dagger.auto:androidx-viewmodel:1.2.1")
// If you want to automatically provide your Room DAOs add the Room dependency
implementation("se.ansman.dagger.auto:androidx-room:1.2.0")
implementation("se.ansman.dagger.auto:androidx-room:1.2.1")
}
```

Expand Down
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@ kapt.include.compile.classpath=false

android.useAndroidX=true

version=1.3.0-SNAPSHOT
latestRelease=1.2.0
version=1.2.1
latestRelease=1.2.1
96 changes: 96 additions & 0 deletions src/doc/dokka/1.2.1/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 7daf8e8

Please sign in to comment.