diff --git a/README.MD b/README.MD index 52cac31..03dc16b 100644 --- a/README.MD +++ b/README.MD @@ -121,6 +121,7 @@ Each view get as parameter day cell composable. Thanks to that your calendar can | 1.5.11 | 0.0.8-compose-1.5.11 | | 1.6.1 | 0.0.9 | | 1.6.10 | 1.0.0 | +| 1.6.10 | 1.0.1 | --- diff --git a/calendar/build.gradle.kts b/calendar/build.gradle.kts index 05b7a2d..16d49f5 100644 --- a/calendar/build.gradle.kts +++ b/calendar/build.gradle.kts @@ -132,7 +132,7 @@ android { compose = true } composeOptions { - kotlinCompilerExtensionVersion = "1.5.11" + kotlinCompilerExtensionVersion = libs.versions.compose.asProvider().get() } } diff --git a/sample/composeApp/src/commonMain/kotlin/io/wojciechosak/calendar/calendar/MenuScreen.kt b/sample/composeApp/src/commonMain/kotlin/io/wojciechosak/calendar/calendar/MenuScreen.kt index 3af469b..04890cd 100644 --- a/sample/composeApp/src/commonMain/kotlin/io/wojciechosak/calendar/calendar/MenuScreen.kt +++ b/sample/composeApp/src/commonMain/kotlin/io/wojciechosak/calendar/calendar/MenuScreen.kt @@ -34,7 +34,7 @@ class MenuScreen : Screen { item { ScreenButton(AnimationScreen(), "Animations") } item { ScreenButton(RangeSelectionScreen(), "Range selection") } item { ScreenButton(FullDateScreen(), "Full date selector (day/month/year)") } - item { Text("Lib version: 0.0.9") } + item { Text("Lib version: 1.0.1") } } }