Skip to content

Commit

Permalink
Merge pull request #31 from skydoves/release/1.0.3
Browse files Browse the repository at this point in the history
Prepare to release 1.0.3
  • Loading branch information
skydoves authored Jul 5, 2023
2 parents 9d27bed + dbd3710 commit 4960be3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ Add the dependency below to your **module**'s `build.gradle.kts` file:

```gradle
dependencies {
implementation("com.github.skydoves:colorpicker-compose:1.0.2")
implementation("com.github.skydoves:colorpicker-compose:1.0.3")
}
```

Expand All @@ -53,7 +53,7 @@ Next, add the dependency below to your **module**'s `build.gradle.kts` file:

```gradle
dependencies {
implementation("com.github.skydoves:colorpicker-compose:1.0.3-SNAPSHOT")
implementation("com.github.skydoves:colorpicker-compose:1.0.4-SNAPSHOT")
}
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ object Configuration {
const val minSdk = 21
const val majorVersion = 1
const val minorVersion = 0
const val patchVersion = 2
const val patchVersion = 3
const val versionName = "$majorVersion.$minorVersion.$patchVersion"
const val versionCode = 3
const val versionCode = 4
const val snapshotVersionName = "$majorVersion.$minorVersion.${patchVersion + 1}-SNAPSHOT"
const val artifactGroup = "com.github.skydoves"
}

0 comments on commit 4960be3

Please sign in to comment.