Skip to content

Commit

Permalink
Bump org.jetbrains.compose from 1.0.0-alpha4-build321 to 1.0.0-alpha4…
Browse files Browse the repository at this point in the history
…-build328 (#70)

* Bump org.jetbrains.compose

Bumps org.jetbrains.compose from 1.0.0-alpha4-build321 to 1.0.0-alpha4-build328.

---
updated-dependencies:
- dependency-name: org.jetbrains.compose
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump Kotlin to 1.5.30

* Add workaround for JetBrains/compose-multiplatform#1119

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Philip Wedemann <[email protected]>
Co-authored-by: hfhbd <[email protected]>
  • Loading branch information
3 people authored Aug 27, 2021
1 parent 7bcf51d commit 0afd6d9
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
4 changes: 2 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import java.util.Base64

plugins {
kotlin("multiplatform") version "1.5.21"
id("org.jetbrains.compose") version "1.0.0-alpha4-build321"
kotlin("multiplatform") version "1.5.30"
id("org.jetbrains.compose") version "1.0.0-alpha4-build328"
`maven-publish`
signing
id("io.github.gradle-nexus.publish-plugin") version "1.1.0"
Expand Down
5 changes: 4 additions & 1 deletion src/commonMain/kotlin/app/softwork/routingcompose/Router.kt
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,10 @@ public abstract class Router(private val initPath: String) {
subscriber.remove(id)
}

internal fun update(newPath: String) {
/**
* Temporarly public due to https://github.com/JetBrains/compose-jb/issues/1119
*/
public fun update(newPath: String) {
subscriber.entries.forEach { (_, fn) ->
fn(newPath)
}
Expand Down

0 comments on commit 0afd6d9

Please sign in to comment.