Skip to content

Commit

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

Expand Down
6 changes: 3 additions & 3 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
org.gradle.parallel=true
org.gradle.jvmargs=-Xmx10g -Xms4g -XX\:MaxMetaspaceSize\=1g -Dfile.encoding\=UTF-8 -XX\:+UseG1GC
org.gradle.jvmargs=-Xmx10g -Xms4g -XX\:MaxMetaspaceSize\=1g -Dfile.encoding\=UTF-8 -XX\:+UseG1GC
org.gradle.vfs.watch=true
org.gradle.caching=true
org.gradle.configuration.cache=true
Expand All @@ -11,5 +11,5 @@ kapt.include.compile.classpath=false

android.useAndroidX=true

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

Please sign in to comment.