Skip to content

Commit

Permalink
Prepare for release 0.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ansman committed Oct 1, 2023
1 parent b720672 commit 5c4750b
Show file tree
Hide file tree
Showing 110 changed files with 9,898 additions and 12 deletions.
20 changes: 10 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,29 +45,29 @@ dependencies {
// Set up your dagger dependencies and compiler
// Include this in kotlin or android modules
implementation("se.ansman.dagger.auto:core:0.9.1")
kapt("se.ansman.dagger.auto:compiler:0.9.1")
implementation("se.ansman.dagger.auto:core:0.10.0")
kapt("se.ansman.dagger.auto:compiler:0.10.0")
// If you're using KSP
ksp("se.ansman.dagger.auto:compiler:0.9.1")
ksp("se.ansman.dagger.auto:compiler:0.10.0")
// Include this only in android modules
implementation("se.ansman.dagger.auto:android:0.9.1")
implementation("se.ansman.dagger.auto:android:0.10.0")
// Add these if you want to replace objects during tests
testImplementation("se.ansman.dagger.auto:android-testing:0.9.1")
kaptTest("se.ansman.dagger.auto:compiler:0.9.1")
testImplementation("se.ansman.dagger.auto:android-testing:0.10.0")
kaptTest("se.ansman.dagger.auto:compiler:0.10.0")
// If you're using KSP
kspTest("se.ansman.dagger.auto:compiler:0.9.1")
kspTest("se.ansman.dagger.auto:compiler:0.10.0")
// If you want to provide Retrofit services add the Retrofit dependency
implementation("se.ansman.dagger.auto:retrofit:0.9.1")
implementation("se.ansman.dagger.auto:retrofit:0.10.0")
// If you want to inject a CoroutineScope into ViewModels add the ViewModel dependency
implementation("se.ansman.dagger.auto:androidx-viewmodel:0.9.1")
implementation("se.ansman.dagger.auto:androidx-viewmodel:0.10.0")
// If you want to automatically provide your Room DAOs add the Room dependency
implementation("se.ansman.dagger.auto:androidx-room:0.9.1")
implementation("se.ansman.dagger.auto:androidx-room:0.10.0")
}
```

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=0.10.0-SNAPSHOT
latestRelease=0.9.1
version=0.10.0
latestRelease=0.10.0
96 changes: 96 additions & 0 deletions src/doc/dokka/0.10.0/android/index.html

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

Loading

0 comments on commit 5c4750b

Please sign in to comment.