Skip to content

Commit

Permalink
v1.0.0-dev.32.1
Browse files Browse the repository at this point in the history
  • Loading branch information
sellmair committed Dec 18, 2024
1 parent c1079d3 commit 4a86575
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 16 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,10 @@ dependencyResolutionManagement {

```kotlin
plugins {
kotlin("multiplatform") version "2.1.0-firework.31" // <- Use special builds of Kotlin
kotlin("plugin.compose") version "2.1.0-firework.31" // <- Use special builds of Kotlin/Compose Compiler
kotlin("multiplatform") version "2.1.0-firework.32" // <- Use special builds of Kotlin
kotlin("plugin.compose") version "2.1.0-firework.32" // <- Use special builds of Kotlin/Compose Compiler
id("org.jetbrains.compose")
id("org.jetbrains.compose-hot-reload") version "1.0.0-dev.31.9" // <- add this additionally
id("org.jetbrains.compose-hot-reload") version "1.0.0-dev.32.1" // <- add this additionally
}
```

Expand Down
2 changes: 1 addition & 1 deletion dependencies.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[versions]
kotlin = "2.1.0"
firework = "2.1.0-firework.31"
firework = "2.1.0-firework.32"
compose = "1.7.1"
coroutines = "1.9.0"
kotlinxDatetime = "0.6.1"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@ package org.jetbrains.compose.reload.tests
import org.jetbrains.compose.reload.core.createLogger
import org.jetbrains.compose.reload.orchestration.OrchestrationMessage
import org.jetbrains.compose.reload.utils.*
import kotlin.io.path.appendLines
import kotlin.io.path.appendText

class ScreenshotTests {
private val logger = createLogger()
Expand Down Expand Up @@ -259,7 +257,6 @@ class ScreenshotTests {
fixture.checkScreenshot("1-afterLambdaEngaged")
}

@MinKotlinVersion("2.1.0-beta")
@HotReloadTest
@DefaultSettingsGradleKts
@DefaultBuildGradleKts
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version=1.0.0-dev.31.9
version=1.0.0-dev.32.1
org.gradle.jvmargs=-Xmx4g -XX:+UseParallelGC
org.gradle.configuration-cache=true
org.gradle.configuration-cache.parallel=true
Expand Down
4 changes: 2 additions & 2 deletions samples/bytecode-analyzer/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ kotlin {
}

sourceSets.commonMain.dependencies {
implementation("org.jetbrains.compose:hot-reload-core:1.0.0-dev.31.9")
implementation("org.jetbrains.compose:hot-reload-analysis:1.0.0-dev.31.9")
implementation("org.jetbrains.compose:hot-reload-core:1.0.0-dev.32.1")
implementation("org.jetbrains.compose:hot-reload-analysis:1.0.0-dev.32.1")

implementation("io.sellmair:evas:1.1.0")
implementation("io.sellmair:evas-compose:1.1.0")
Expand Down
6 changes: 3 additions & 3 deletions samples/bytecode-analyzer/settings.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
pluginManagement {
plugins {
id("org.jetbrains.compose-hot-reload") version "1.0.0-dev.31.9"
id("org.jetbrains.compose-hot-reload") version "1.0.0-dev.32.1"
}

repositories {
Expand All @@ -11,8 +11,8 @@ pluginManagement {
}

plugins {
kotlin("multiplatform") version "2.1.0-firework.31"
kotlin("plugin.compose") version "2.1.0-firework.31"
kotlin("multiplatform") version "2.1.0-firework.32"
kotlin("plugin.compose") version "2.1.0-firework.32"
id("org.jetbrains.compose") version "1.7.1"
}
}
Expand Down
6 changes: 3 additions & 3 deletions samples/counter/settings.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
pluginManagement {
plugins {
id("org.jetbrains.compose-hot-reload") version "1.0.0-dev.31.9"
id("org.jetbrains.compose-hot-reload") version "1.0.0-dev.32.1"
}

repositories {
Expand All @@ -11,8 +11,8 @@ pluginManagement {
}

plugins {
kotlin("multiplatform") version "2.1.0-firework.31"
kotlin("plugin.compose") version "2.1.0-firework.31"
kotlin("multiplatform") version "2.1.0-firework.32"
kotlin("plugin.compose") version "2.1.0-firework.32"
id("org.jetbrains.compose") version "1.7.1"
}
}
Expand Down

0 comments on commit 4a86575

Please sign in to comment.