Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Multiplatform color picker library for Android, iOS, Desktop (JVM), and Web (Was

```kotlin
// build.gradle.kts
implementation("codes.side:colorpicker:1.0.0")
implementation("codes.side:colorpicker:1.1.0")
```

In a Kotlin Multiplatform project, add it to `commonMain`:
Expand All @@ -27,7 +27,7 @@ In a Kotlin Multiplatform project, add it to `commonMain`:
kotlin {
sourceSets {
commonMain.dependencies {
implementation("codes.side:colorpicker:1.0.0")
implementation("codes.side:colorpicker:1.1.0")
}
}
}
Expand Down Expand Up @@ -418,7 +418,7 @@ The View-based `codes.side:andcolorpicker` artifact (XML `HSLColorPickerSeekBar`

```diff
- implementation("codes.side:andcolorpicker:0.6.2")
+ implementation("codes.side:colorpicker:1.0.0")
+ implementation("codes.side:colorpicker:1.1.0")
```

There is no 1:1 API mapping — migrate by concept:
Expand Down
6 changes: 3 additions & 3 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Multiplatform color picker library for Android, iOS, Desktop (JVM), and Web (Was

```kotlin
// build.gradle.kts
implementation("codes.side:colorpicker:1.0.0")
implementation("codes.side:colorpicker:1.1.0")
```

In a Kotlin Multiplatform project, add it to `commonMain`:
Expand All @@ -27,7 +27,7 @@ In a Kotlin Multiplatform project, add it to `commonMain`:
kotlin {
sourceSets {
commonMain.dependencies {
implementation("codes.side:colorpicker:1.0.0")
implementation("codes.side:colorpicker:1.1.0")
}
}
}
Expand Down Expand Up @@ -418,7 +418,7 @@ The View-based `codes.side:andcolorpicker` artifact (XML `HSLColorPickerSeekBar`

```diff
- implementation("codes.side:andcolorpicker:0.6.2")
+ implementation("codes.side:colorpicker:1.0.0")
+ implementation("codes.side:colorpicker:1.1.0")
```

There is no 1:1 API mapping — migrate by concept:
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ org.jetbrains.dokka.experimental.gradle.pluginMode=V2Enabled
# Published version. Single source of truth: the release workflow checks the git tag
# against this and fails if they disagree, so a tag can never publish a different
# version. Maven Central is immutable, which makes that mistake unrecoverable.
VERSION_NAME=1.0.0
VERSION_NAME=1.1.0

# Required by com.android.compose.screenshot (Compose Preview Screenshot Testing).
android.experimental.enableScreenshotTest=true
2 changes: 1 addition & 1 deletion sample/androidApp/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ android {
minSdk = 24
targetSdk = 37
versionCode = 1
versionName = "1.0.0"
versionName = "1.1.0"
}

compileOptions {
Expand Down