Skip to content

Commit ac6e489

Browse files
committed
Prepare for release 0.9.0
1 parent e1dcbdb commit ac6e489

File tree

4 files changed

+11
-7
lines changed

4 files changed

+11
-7
lines changed

.github/workflows/build.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,11 @@ jobs:
115115
script: ./gradlew connectedDebugAndroidTest
116116

117117
release:
118-
name: Release to sonatype
118+
name: Release ${{ matrix.module }} to Sonatype
119+
strategy:
120+
matrix:
121+
module: [decompose-router, decompose-router-wear]
122+
119123
if: ${{ github.event_name != 'pull_request' }}
120124
runs-on: macos-latest
121125
needs:
@@ -151,7 +155,7 @@ jobs:
151155
GPG_KEY_SECRET: ${{ secrets.GPG_KEY_SECRET }}
152156

153157
- name: Release to sonatype
154-
run: ./gradlew publishAllPublicationsToMavenRepository
158+
run: ./gradlew :${{ matrix.module }}:publishAllPublicationsToMavenRepository
155159

156160
documentation:
157161
name: Publish documentation

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@
77
<img src="https://user-images.githubusercontent.com/13775137/236108679-0ed87db8-fc1e-4f23-bcf7-3c10eeedc82a.svg" height="128" align="right">
88
</picture>
99

10-
[![Kotlin Experimental](https://kotl.in/badges/experimental.svg)](https://kotlinlang.org/docs/components-stability.html)
10+
[![Kotlin Alpha](https://kotl.in/badges/alpha.svg)](https://kotlinlang.org/docs/components-stability.html)
1111
[![Build](https://github.com/xxfast/Decompose-Router/actions/workflows/build.yml/badge.svg)](https://github.com/xxfast/Decompose-Router/actions/workflows/build.yml)
12-
[![Kotlin](https://img.shields.io/badge/Kotlin-2.0.0-blue.svg?style=flat&logo=kotlin)](https://kotlinlang.org)
12+
[![Kotlin](https://img.shields.io/badge/Kotlin-2.0.20-blue.svg?style=flat&logo=kotlin)](https://kotlinlang.org)
1313
[![Maven Central](https://img.shields.io/maven-central/v/io.github.xxfast/decompose-router?color=blue)](https://search.maven.org/search?q=g:io.github.xxfast)
1414

1515
![badge-android](http://img.shields.io/badge/platform-android-6EDB8D.svg?style=flat)

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ allprojects {
3131
}
3232

3333
group = "io.github.xxfast"
34-
version = "0.9.0-SNAPSHOT"
34+
version = "0.9.0"
3535

3636
// Do not publish the app
3737
if (name.contains("app")) return@allprojects

docs/writerside.cfg

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@
44
<ihp version="2.0">
55
<topics dir="topics" web-path="topics"/>
66
<images dir="images" web-path="images"/>
7-
<instance src="decompose-router.tree" web-path="/d/" version="0.5.1"/>
8-
</ihp>
7+
<instance src="decompose-router.tree" web-path="/d/" version="0.9.0"/>
8+
</ihp>

0 commit comments

Comments
 (0)