Browse Source

Migrate to 1.0.0-alpha4-build328

pull/1118/head v1.0.0-alpha4-build328
Igor Demin 3 years ago
parent
commit
a8bc62c519
  1. 2
      components/gradle.properties
  2. 2
      gradle-plugins/gradle.properties
  3. 2
      templates/desktop-template/build.gradle.kts
  4. 2
      templates/multiplatform-template/build.gradle.kts
  5. 2
      templates/web-template/build.gradle.kts
  6. 4
      web/gradle.properties

2
components/gradle.properties

@ -4,4 +4,4 @@ android.enableJetifier=true
kotlin.code.style=official
# __LATEST_COMPOSE_RELEASE_VERSION__
compose.version=0.0.0-sync-2021-08-27-build327
compose.version=1.0.0-alpha4-build328

2
gradle-plugins/gradle.properties

@ -6,7 +6,7 @@ kotlin.code.style=official
# unless overridden by COMPOSE_GRADLE_PLUGIN_COMPOSE_VERSION env var.
#
# __LATEST_COMPOSE_RELEASE_VERSION__
compose.version=0.0.0-sync-2021-08-27-build327
compose.version=1.0.0-alpha4-build328
compose.with.web=false
# A version of Gradle plugin, that will be published,

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

@ -5,7 +5,7 @@ plugins {
// __KOTLIN_COMPOSE_VERSION__
kotlin("jvm") version "1.5.30"
// __LATEST_COMPOSE_RELEASE_VERSION__
id("org.jetbrains.compose") version (System.getenv("COMPOSE_TEMPLATE_COMPOSE_VERSION") ?: "0.0.0-sync-2021-08-27-build327")
id("org.jetbrains.compose") version (System.getenv("COMPOSE_TEMPLATE_COMPOSE_VERSION") ?: "1.0.0-alpha4-build328")
}
repositories {

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

@ -1,6 +1,6 @@
buildscript {
// __LATEST_COMPOSE_RELEASE_VERSION__
val composeVersion = System.getenv("COMPOSE_TEMPLATE_COMPOSE_VERSION") ?: "0.0.0-sync-2021-08-27-build327"
val composeVersion = System.getenv("COMPOSE_TEMPLATE_COMPOSE_VERSION") ?: "1.0.0-alpha4-build328"
repositories {
mavenCentral()

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

@ -5,7 +5,7 @@ plugins {
// __KOTLIN_COMPOSE_VERSION__
kotlin("multiplatform") version "1.5.30"
// __LATEST_COMPOSE_RELEASE_VERSION__
id("org.jetbrains.compose") version ("0.0.0-sync-2021-08-27-build327")
id("org.jetbrains.compose") version ("1.0.0-alpha4-build328")
}
repositories {

4
web/gradle.properties

@ -1,6 +1,6 @@
# __LATEST_COMPOSE_RELEASE_VERSION__
COMPOSE_CORE_VERSION=0.0.0-sync-2021-08-27-build327
COMPOSE_WEB_VERSION=0.0.0-sync-2021-08-27-build327
COMPOSE_CORE_VERSION=1.0.0-alpha4-build328
COMPOSE_WEB_VERSION=1.0.0-alpha4-build328
compose.web.buildSamples=false
compose.web.tests.integration.withFirefox
compose.web.tests.skip.benchmarks=false

Loading…
Cancel
Save