Skip to content

Commit

Permalink
Bump version and artifact naming changes
Browse files Browse the repository at this point in the history
Naming changes includes adding core to artifact group package and dash for the artifact name
  • Loading branch information
SeanZoR committed Sep 5, 2024
1 parent 4045d5c commit 8970af0
Show file tree
Hide file tree
Showing 7 changed files with 20 additions and 16 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Add the following dependency to your `build.gradle` file:

```kotlin
dependencies {
implementation("com.sean8:hiltcoroutines:0.0.7")
implementation("com.sean8.core:hilt-coroutines:1.0.0")
}
```

Expand Down
4 changes: 2 additions & 2 deletions hiltcoroutines/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ plugins {
}

android {
namespace = "com.sean8.hiltcoroutines"
namespace = "com.sean8.core.hiltcoroutines"
compileSdk = 34

defaultConfig {
Expand All @@ -30,7 +30,7 @@ android {
}

mavenPublishing {
coordinates("com.sean8", "hiltcoroutines", "0.0.7")
coordinates("com.sean8.core", "hilt-coroutines", "1.0.0")

pom {
name.set("HiltCoroutines")
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.sean8.hiltcoroutines
package com.sean8.core.hiltcoroutines

import javax.inject.Qualifier
import kotlin.annotation.AnnotationRetention.RUNTIME
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package com.sean8.hiltcoroutines.di
package com.sean8.core.hiltcoroutines.di

import com.sean8.hiltcoroutines.AppDispatchers
import com.sean8.hiltcoroutines.Dispatcher
import com.sean8.core.hiltcoroutines.AppDispatchers
import com.sean8.core.hiltcoroutines.Dispatcher
import dagger.Module
import dagger.Provides
import dagger.hilt.InstallIn
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package com.sean8.hiltcoroutines.di
package com.sean8.core.hiltcoroutines.di

import com.sean8.hiltcoroutines.AppDispatchers
import com.sean8.hiltcoroutines.Dispatcher
import com.sean8.core.hiltcoroutines.AppDispatchers
import com.sean8.core.hiltcoroutines.Dispatcher
import dagger.Module
import dagger.Provides
import dagger.hilt.InstallIn
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
package com.sean8.hiltcoroutines.di
package com.sean8.core.hiltcoroutines.di

import com.sean8.hiltcoroutines.AppDispatchers
import com.sean8.hiltcoroutines.Dispatcher
import com.sean8.core.hiltcoroutines.AppDispatchers
import com.sean8.core.hiltcoroutines.Dispatcher
import com.sean8.core.hiltcoroutines.di.ApplicationScope
import com.sean8.core.hiltcoroutines.di.IOScope
import com.sean8.core.hiltcoroutines.di.MainScope
import com.sean8.core.hiltcoroutines.di.StrictScope
import dagger.hilt.android.testing.HiltAndroidRule
import dagger.hilt.android.testing.HiltAndroidTest
import dagger.hilt.android.testing.HiltTestApplication
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package com.sean8.hiltcoroutines.di
package com.sean8.core.hiltcoroutines.di

import com.sean8.hiltcoroutines.AppDispatchers
import com.sean8.hiltcoroutines.Dispatcher
import com.sean8.core.hiltcoroutines.AppDispatchers
import com.sean8.core.hiltcoroutines.Dispatcher
import dagger.hilt.android.testing.HiltAndroidRule
import dagger.hilt.android.testing.HiltAndroidTest
import dagger.hilt.android.testing.HiltTestApplication
Expand Down

0 comments on commit 8970af0

Please sign in to comment.