Browse Source

Sync/2021 09 27 (#1203)

pull/1205/head
Nikolay Igotti 3 years ago committed by GitHub
parent
commit
86bf3115b5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      components/build.gradle.kts
  2. 2
      compose/frameworks/support
  3. 2
      compose/golden
  4. 2
      gradle-plugins/compose/src/test/kotlin/org/jetbrains/compose/test/TestKotlinVersion.kt
  5. 4
      gradle-plugins/compose/src/test/test-projects/application/jvm/src/main/kotlin/main.kt
  6. 2
      templates/multiplatform-template/build.gradle.kts
  7. 2
      templates/web-template/build.gradle.kts

2
components/build.gradle.kts

@ -10,7 +10,7 @@ buildscript {
dependencies {
classpath("org.jetbrains.compose:compose-gradle-plugin:$composeVersion")
// __KOTLIN_COMPOSE_VERSION__
classpath(kotlin("gradle-plugin", version = "1.5.30"))
classpath(kotlin("gradle-plugin", version = "1.5.31"))
}
}

2
compose/frameworks/support

@ -1 +1 @@
Subproject commit 9501a4c85e764994f9e4c342f86ea09bae9d920c
Subproject commit bb90d0b5e1422c0b0c9700466a0f609aee8bb3a5

2
compose/golden

@ -1 +1 @@
Subproject commit fe65d473dd24ed2aabe700f2cc2c982e356b0ebf
Subproject commit 132f23499631f5536f1c47c649285f587535ef29

2
gradle-plugins/compose/src/test/kotlin/org/jetbrains/compose/test/TestKotlinVersion.kt

@ -8,6 +8,6 @@ package org.jetbrains.compose.test
@Suppress("EnumEntryName")
enum class TestKotlinVersion(val versionString: String) {
// __KOTLIN_COMPOSE_VERSION__
Default("1.5.30"),
Default("1.5.31"),
V1_5_20("1.5.20")
}

4
gradle-plugins/compose/src/test/test-projects/application/jvm/src/main/kotlin/main.kt

@ -1,10 +1,10 @@
import androidx.compose.desktop.Window
import androidx.compose.material.Text
import androidx.compose.material.Button
import androidx.compose.material.MaterialTheme
import androidx.compose.ui.window.singleWindowApplication
import androidx.compose.runtime.*
fun main() = Window {
fun main() = singleWindowApplication {
val scope = rememberCoroutineScope()
var text by remember { mutableStateOf("Hello, World!") }

2
templates/multiplatform-template/build.gradle.kts

@ -12,7 +12,7 @@ buildscript {
classpath("org.jetbrains.compose:compose-gradle-plugin:$composeVersion")
classpath("com.android.tools.build:gradle:4.1.3")
// __KOTLIN_COMPOSE_VERSION__
classpath(kotlin("gradle-plugin", version = "1.5.30"))
classpath(kotlin("gradle-plugin", version = "1.5.31"))
}
}

2
templates/web-template/build.gradle.kts

@ -3,7 +3,7 @@ import org.jetbrains.compose.desktop.application.dsl.TargetFormat
plugins {
// __KOTLIN_COMPOSE_VERSION__
kotlin("multiplatform") version "1.5.30"
kotlin("multiplatform") version "1.5.31"
// __LATEST_COMPOSE_RELEASE_VERSION__
id("org.jetbrains.compose") version ("1.0.0-alpha4-build328")
}

Loading…
Cancel
Save