Skip to content

Commit

Permalink
Update compose.jb to v1.5.0-rc01 (#807)
Browse files Browse the repository at this point in the history
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [org.jetbrains.compose](https://togithub.com/JetBrains/compose-jb) |
plugin | patch | `1.5.0-beta02` -> `1.5.0-rc01` |
|
[org.jetbrains.compose.material3:material3](https://togithub.com/JetBrains/compose-jb)
| dependencies | patch | `1.5.0-beta02` -> `1.5.0-rc01` |
|
[org.jetbrains.compose.foundation:foundation](https://togithub.com/JetBrains/compose-jb)
| dependencies | patch | `1.5.0-beta02` -> `1.5.0-rc01` |
|
[org.jetbrains.compose.ui:ui](https://togithub.com/JetBrains/compose-jb)
| dependencies | patch | `1.5.0-beta02` -> `1.5.0-rc01` |
|
[org.jetbrains.compose.runtime:runtime-saveable](https://togithub.com/JetBrains/compose-jb)
| dependencies | patch | `1.5.0-beta02` -> `1.5.0-rc01` |
|
[org.jetbrains.compose.runtime:runtime](https://togithub.com/JetBrains/compose-jb)
| dependencies | patch | `1.5.0-beta02` -> `1.5.0-rc01` |

---

### ⚠ Dependency Lookup Warnings ⚠

Warnings were logged while processing this repo. Please check the
Dependency Dashboard for more information.

---

### Release Notes

<details>
<summary>JetBrains/compose-jb (org.jetbrains.compose)</summary>

###
[`v1.5.0-rc01`](https://togithub.com/JetBrains/compose-multiplatform/releases/tag/v1.5.0-rc01):
1.5.0-rc01

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Enabled.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about these
updates again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Renovate
Bot](https://togithub.com/renovatebot/renovate).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNi41MS4zIiwidXBkYXRlZEluVmVyIjoiMzYuNTEuMyIsInRhcmdldEJyYW5jaCI6Im1haW4ifQ==-->

---------

Co-authored-by: Zac Sweers <[email protected]>
  • Loading branch information
slack-oss-bot and ZacSweers authored Aug 19, 2023
1 parent 203f02c commit 9792bc8
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 11 deletions.
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ subprojects {
apply(plugin = "org.jetbrains.dokka")

tasks.withType<DokkaTaskPartial>().configureEach {
outputDirectory.set(buildDir.resolve("docs/partial"))
outputDirectory.set(layout.buildDirectory.dir("docs/partial"))
dokkaSourceSets.configureEach {
val readMeProvider = project.layout.projectDirectory.file("README.md")
if (readMeProvider.asFile.exists()) {
Expand Down
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ compose-material = "1.5.0"
compose-material3 = "1.1.1"
compose-runtime = "1.5.0"
compose-ui = "1.5.0"
compose-jb = "1.5.0-beta02"
compose-jb = "1.5.0-rc01"
compose-jb-compiler = "1.5.0"
compose-jb-kotlinVersion = "1.9.0"
compose-integration-constraintlayout = "1.0.1"
Expand Down
1 change: 0 additions & 1 deletion samples/counter/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@ kotlin {
baseName = "counter"
isStatic = true
}
extraSpecAttributes["resources"] = "['src/commonMain/resources/**', 'src/iosMain/resources/**']"
}
// endregion

Expand Down
12 changes: 4 additions & 8 deletions samples/star/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -43,17 +43,13 @@ tasks
)

if (project.hasProperty("circuit.enableComposeCompilerReports")) {
val metricsDir =
project.layout.buildDirectory.dir("compose_metrics").get().asFile.absolutePath
freeCompilerArgs.addAll(
"-P",
"plugin:androidx.compose.compiler.plugins.kotlin:reportsDestination=" +
project.buildDir.absolutePath +
"/compose_metrics"
)
freeCompilerArgs.addAll(
"plugin:androidx.compose.compiler.plugins.kotlin:reportsDestination=$metricsDir",
"-P",
"plugin:androidx.compose.compiler.plugins.kotlin:metricsDestination=" +
project.buildDir.absolutePath +
"/compose_metrics"
"plugin:androidx.compose.compiler.plugins.kotlin:metricsDestination=$metricsDir"
)
}
}
Expand Down

0 comments on commit 9792bc8

Please sign in to comment.