Skip to content

Commit

Permalink
Prepare for release 1.0.9
Browse files Browse the repository at this point in the history
  • Loading branch information
skydoves committed Jun 25, 2024
1 parent b0b4272 commit 31c212e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 29 deletions.
28 changes: 1 addition & 27 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,36 +29,10 @@ Add the dependency below to your **module**'s `build.gradle.kts` file:

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

## SNAPSHOT

<details>
<summary>See how to import the snapshot</summary>

### Including the SNAPSHOT
Snapshots of the current development version of ColorPicker-Compose are available, which track [the latest versions](https://oss.sonatype.org/content/repositories/snapshots/com/github/skydoves/colorpicker-compose/).

To import snapshot versions on your project, add the code snippet below on your gradle file:

```Gradle
repositories {
maven(url="https://oss.sonatype.org/content/repositories/snapshots/")
}
```

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

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

</details>

## 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,9 +6,9 @@ object Configuration {
const val minSdk = 21
const val majorVersion = 1
const val minorVersion = 0
const val patchVersion = 8
const val patchVersion = 9
const val versionName = "$majorVersion.$minorVersion.$patchVersion"
const val versionCode = 9
const val versionCode = 10
const val snapshotVersionName = "$majorVersion.$minorVersion.${patchVersion + 1}-SNAPSHOT"
const val artifactGroup = "com.github.skydoves"
}

0 comments on commit 31c212e

Please sign in to comment.