Skip to content

Commit ff8ff42

Browse files
authored
Merge pull request #39 from jacobras/update-dependencies
Update dependencies
2 parents d93ec52 + 0bd8014 commit ff8ff42

12 files changed

Lines changed: 41 additions & 29 deletions

File tree

.github/workflows/build.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,14 @@ jobs:
1515
timeout-minutes: 15
1616
runs-on: ubuntu-latest
1717
steps:
18-
- uses: actions/checkout@v3
18+
- uses: actions/checkout@v4
1919
with:
2020
clean: ${{ github.ref == 'refs/heads/develop' }}
2121

2222
- name: Set up JDK 17
23-
uses: actions/setup-java@v1
23+
uses: actions/setup-java@v4
2424
with:
25+
distribution: 'temurin'
2526
java-version: 17
2627

2728
- name: Compile

.github/workflows/publish.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,12 @@ jobs:
77
runs-on: macos-latest
88

99
steps:
10-
- uses: actions/checkout@v2
10+
- uses: actions/checkout@v4
1111

1212
- name: Set up JDK 17
13-
uses: actions/setup-java@v1
13+
uses: actions/setup-java@v4
1414
with:
15+
distribution: 'temurin'
1516
java-version: 17
1617

1718
- name: Publish Library

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ A web demo is available at https://jacobras.github.io/ComposeActionMenu/.
2929

3030
```kotlin
3131
dependencies {
32-
implementation("nl.jacobras:compose-action-menu:3.0.0")
32+
implementation("nl.jacobras:compose-action-menu:3.0.1")
3333
}
3434
```
3535

compose-action-menu/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ plugins {
1010
}
1111

1212
group = "nl.jacobras"
13-
version = "3.0.0"
13+
version = "3.0.1"
1414

1515
mavenPublishing {
1616
publishToMavenCentral(SonatypeHost.S01, true)

compose-action-menu/src/androidMain/kotlin/nl/jacobras/composeactionmenu/PreviewAnnotations.kt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import androidx.compose.ui.tooling.preview.Preview
99
*/
1010
@PreviewLargeFonts
1111
@PreviewThemes
12-
annotation class PreviewUiComponent
12+
internal annotation class PreviewUiComponent
1313

1414
@Preview(
1515
name = "150%",
@@ -23,7 +23,7 @@ annotation class PreviewUiComponent
2323
showBackground = true,
2424
backgroundColor = 0xfff
2525
)
26-
annotation class PreviewLargeFonts
26+
internal annotation class PreviewLargeFonts
2727

2828
@Preview(
2929
name = "Light",
@@ -36,4 +36,4 @@ annotation class PreviewLargeFonts
3636
backgroundColor = 0x000,
3737
uiMode = UI_MODE_NIGHT_YES or UI_MODE_TYPE_NORMAL
3838
)
39-
annotation class PreviewThemes
39+
internal annotation class PreviewThemes

docs/composeApp.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/composeApp.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/skiko.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/skiko.mjs

Lines changed: 20 additions & 10 deletions
Large diffs are not rendered by default.

docs/skiko.wasm

260 KB
Binary file not shown.

0 commit comments

Comments
 (0)