Skip to content

Commit

Permalink
Prepare for release 1.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
skydoves committed Jul 19, 2024
1 parent 1a36cb9 commit 4abb2ca
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 4 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.1.1"
colorpicker = "1.1.2"

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

```gradle
dependencies {
implementation("com.github.skydoves:colorpicker-compose:1.1.1")
implementation("com.github.skydoves:colorpicker-compose:1.1.2")
// if you're using Version Catalog
implementation(libs.compose.colorpicker)
Expand All @@ -60,6 +60,15 @@ sourceSets {
}
```

### Kotlin Multiplatform Support Maps

| OS | Support |
|:---------------------------------:|:-------:|
| Android ||
| iOSX64/iOSArm64/iosSimulatorArm64 ||
| macosX64/macosArm64 ||
| js/WasmJs ||

## 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 @@ -7,9 +7,9 @@ object Configuration {
const val demoMinSdk = 24
const val majorVersion = 1
const val minorVersion = 1
const val patchVersion = 1
const val patchVersion = 2
const val versionName = "$majorVersion.$minorVersion.$patchVersion"
const val versionCode = 12
const val versionCode = 13
const val snapshotVersionName = "$majorVersion.$minorVersion.${patchVersion + 1}-SNAPSHOT"
const val artifactGroup = "com.github.skydoves"
}

0 comments on commit 4abb2ca

Please sign in to comment.