Skip to content

Commit

Permalink
Prepare for release 1.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
skydoves committed Jun 30, 2024
1 parent ee9f94d commit a5ef748
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
jobs:
publish:
name: Snapshot build and publish
runs-on: ubuntu-latest
runs-on: macos-latest
steps:
- name: Check out code
uses: actions/[email protected]
Expand Down
4 changes: 2 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.0"
colorpicker = "1.1.1"

[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.0")
implementation("com.github.skydoves:colorpicker-compose:1.1.1")
// if you're using Version Catalog
implementation(libs.compose.colorpicker)
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 = 0
const val patchVersion = 1
const val versionName = "$majorVersion.$minorVersion.$patchVersion"
const val versionCode = 11
const val versionCode = 12
const val snapshotVersionName = "$majorVersion.$minorVersion.${patchVersion + 1}-SNAPSHOT"
const val artifactGroup = "com.github.skydoves"
}

0 comments on commit a5ef748

Please sign in to comment.