From 05acb1fc623e8d3643741b3d2b73f7093e60bfee Mon Sep 17 00:00:00 2001 From: Jack Boswell Date: Tue, 9 Jan 2024 23:24:39 +1300 Subject: [PATCH] Prepare for v1.2.0 (#42) --- README.md | 2 +- core/MODULE.md | 6 +++++- gradle/libs.versions.toml | 2 +- material3/MODULE.md | 7 ++++++- 4 files changed, 13 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index f6ff9aa..fc54fac 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ An AndroidX MenuHost & MenuProvider-like API for Jetpack Compose! ```kt dependencies { - val menuproviderVersion = "1.1.0" + val menuproviderVersion = "1.2.0" // Core provides a generic implementation fit for any design system implementation("io.github.boswelja.menuprovider:core:$menuproviderVersion") diff --git a/core/MODULE.md b/core/MODULE.md index d21a2a5..30fc718 100644 --- a/core/MODULE.md +++ b/core/MODULE.md @@ -1,4 +1,8 @@ # Module core The core menu provider system. This module contains everything you need to use a `MenuHost` and -create `MenuItems`. +create `MenuItems`. Use this if you aren't using Material3, or if you prefer to build UI yourself. + +# Package com.boswelja.menuprovider + +Contains all foundational components used to build a menu. diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index bbe063c..cd5fde4 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -1,5 +1,5 @@ [versions] -android-gradle-plugin = "8.2.0" +android-gradle-plugin = "8.2.1" detekt = "1.23.4" kotlin = "1.9.21" dokka = "1.9.10" diff --git a/material3/MODULE.md b/material3/MODULE.md index 134927b..0100ca5 100644 --- a/material3/MODULE.md +++ b/material3/MODULE.md @@ -1,4 +1,9 @@ # Module material3 A set of opinionated Composables that can be used to streamline displaying menu items with a -material3 design. +material3 design. Use this for convenient access to menu-related UI that adapts to your Material3 +theme. + +# Package com.boswelja.menuprovider.material3 + +Contains all material3-related menu Composables.