Skip to content

Commit

Permalink
Update version (#34)
Browse files Browse the repository at this point in the history
  • Loading branch information
boswelja authored Dec 6, 2023
1 parent d715294 commit 421b23c
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ An AndroidX MenuHost & MenuProvider-like API for Jetpack Compose!

```kt
dependencies {
val menuproviderVersion = "1.0.3"
val menuproviderVersion = "1.1.0"

// Core provides a generic implementation fit for any design system
implementation("io.github.boswelja.menuprovider:core:$menuproviderVersion")
Expand All @@ -26,7 +26,7 @@ fun MyComposable() {
topBar = {
TopAppBar(
title = { Text("My Top Bar") },
actions = { TopAppBarMenuItems() }
actions = { AnimatedTopAppBarMenuItems() }
)
}
) {
Expand All @@ -43,7 +43,7 @@ fun MyMenuProvidingComposable() {
imageVector = Icons.Default.Add,
onClick = { performAction() },
isImportant = true,
),
)
)
}
```
Expand Down
2 changes: 1 addition & 1 deletion core/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ plugins {
id("signing")
}
group = "io.github.boswelja.menuprovider"
version = "1.0.5"
version = "1.1.0"

android {
namespace = "com.boswelja.menuprovider"
Expand Down
2 changes: 1 addition & 1 deletion material3/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ plugins {
}

group = "io.github.boswelja.menuprovider"
version = "1.0.5"
version = "1.1.0"

android {
namespace = "com.boswelja.menuprovider.material3"
Expand Down

0 comments on commit 421b23c

Please sign in to comment.