From 809d83b137c1a3da3fb6105bea168a65e9109745 Mon Sep 17 00:00:00 2001 From: Oleksandr Karpovich Date: Tue, 25 May 2021 18:50:56 +0200 Subject: [PATCH] Update compose-web `Getting Started` tutorial with a new kotlin and compose versions --- tutorials/Web/Getting_Started/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tutorials/Web/Getting_Started/README.md b/tutorials/Web/Getting_Started/README.md index 3c70cd5477..0d2ea0b3d7 100644 --- a/tutorials/Web/Getting_Started/README.md +++ b/tutorials/Web/Getting_Started/README.md @@ -42,8 +42,8 @@ pluginManagement { ```kotlin // Add compose gradle plugin plugins { - kotlin("multiplatform") version "1.4.32" - id("org.jetbrains.compose") version "0.0.0-web-dev-11" + kotlin("multiplatform") version "1.5.0" + id("org.jetbrains.compose") version "0.0.0-web-dev-13" } // Add maven repositories @@ -61,7 +61,7 @@ kotlin { sourceSets { val jsMain by getting { dependencies { - implementation(compose.web.web) + implementation(compose.web.core) implementation(compose.runtime) } }