Skip to content

Commit

Permalink
Prepare for release 1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
skydoves committed Jun 29, 2024
1 parent 8f9c97f commit 01abbf7
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 5 deletions.
13 changes: 11 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ If you're using Version Catalog, you can configure the dependency by adding it t
```toml
[versions]
#...
colorpicker = "1.0.9"
colorpicker = "1.1.0"

[libraries]
#...
Expand All @@ -43,13 +43,22 @@ Add the dependency below to your **module**'s `build.gradle.kts` file:

```gradle
dependencies {
implementation("com.github.skydoves:colorpicker-compose:1.0.9")
implementation("com.github.skydoves:colorpicker-compose:1.1.0")
// if you're using Version Catalog
implementation(libs.compose.colorpicker)
}
```

For Kotlin Multiplatform, add the dependency below to your **module**'s `build.gradle.kts` file:

```gradle
sourceSets {
commonMain.dependencies {
implementation("com.github.skydoves:colorpicker-compose:$version")
}
}
## Usage
First, you should initialize `ColorPickerController`, which allows you to control color pickers and all subcomponents.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ object Configuration {
const val minSdk = 21
const val demoMinSdk = 24
const val majorVersion = 1
const val minorVersion = 0
const val patchVersion = 9
const val minorVersion = 1
const val patchVersion = 0
const val versionName = "$majorVersion.$minorVersion.$patchVersion"
const val versionCode = 10
const val versionCode = 11
const val snapshotVersionName = "$majorVersion.$minorVersion.${patchVersion + 1}-SNAPSHOT"
const val artifactGroup = "com.github.skydoves"
}

0 comments on commit 01abbf7

Please sign in to comment.