Skip to content
This repository has been archived by the owner on May 7, 2023. It is now read-only.

Commit

Permalink
Bump to 0.1.0-alpha02
Browse files Browse the repository at this point in the history
  • Loading branch information
Kyant0 committed Sep 6, 2022
1 parent 8566f1a commit 6e5de86
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,16 @@

[Interactive demo](https://Kyant0.github.io/Monet)

Compose version: 1.3.0-beta01

## Usages

```kotlin
// Choose a key color
// Obtain a key color
val color = Color.Blue

// Generate tonal palettes with TonalSpot (default) style
val palettes = color.generateTonalPalettes(style = PaletteStyle.TonalSpot)
val palettes = color.toTonalPalettes(style = PaletteStyle.TonalSpot)

// In your Theme.kt
CompositionLocalProvider(LocalTonalPalettes provides palettes) {
Expand Down
4 changes: 2 additions & 2 deletions lib/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ plugins {
}

group = "com.github.Kyant0"
version = "0.1.0-alpha01"
version = "0.1.0-alpha02"

@Suppress("UnstableApiUsage")
android {
Expand Down Expand Up @@ -57,7 +57,7 @@ afterEvaluate {
publications.create("maven_public", MavenPublication::class) {
groupId = "com.github.Kyant0"
artifactId = "Monet"
version = "0.1.0-alpha01"
version = "0.1.0-alpha02"
from(components.getByName("release"))
}
}
Expand Down

0 comments on commit 6e5de86

Please sign in to comment.