Skip to content

Commit

Permalink
Merge pull request #181 from rickclephas/feature/kotlin-2.0.10
Browse files Browse the repository at this point in the history
Kotlin 2.0.10
  • Loading branch information
rickclephas authored Aug 10, 2024
2 parents b542de7 + 755dd59 commit b9aa3b4
Show file tree
Hide file tree
Showing 8 changed files with 15 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .idea/kotlinc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ buildscript {

allprojects {
group = "com.rickclephas.kmp"
version = "1.0.0-ALPHA-33"
version = "1.0.0-ALPHA-33-kotlin-2.0.10-RC2"

repositories {
mavenCentral()
Expand Down
6 changes: 3 additions & 3 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[versions]
kotlin = "2.0.0"
kotlinx-coroutines = "1.8.1"
kotlin = "2.0.10"
kotlinx-coroutines = "1.9.0-RC"
kotlinx-binary-compatibility-validator = "0.15.0-Beta.2"
ksp = "2.0.0-1.0.24"
ksp = "2.0.10-1.0.24"
kotlinpoet = "1.18.1"
junit = "5.9.1"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,13 @@

// FILE: customFlows.kt

import kotlinx.coroutines.ExperimentalForInheritanceCoroutinesApi
import kotlinx.coroutines.flow.Flow
import kotlinx.coroutines.flow.StateFlow

interface CustomFlow<out T>: Flow<T>

@OptIn(ExperimentalForInheritanceCoroutinesApi::class)
interface CustomStateFlow<out T>: StateFlow<T>

// FILE: test.kt
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,13 @@

// FILE: customFlows.kt

import kotlinx.coroutines.ExperimentalForInheritanceCoroutinesApi
import kotlinx.coroutines.flow.Flow
import kotlinx.coroutines.flow.StateFlow

interface CustomFlow<out T>: Flow<T>

@OptIn(ExperimentalForInheritanceCoroutinesApi::class)
interface CustomStateFlow<out T>: StateFlow<T>

// FILE: test.kt
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,13 @@

// FILE: customFlows.kt

import kotlinx.coroutines.ExperimentalForInheritanceCoroutinesApi
import kotlinx.coroutines.flow.Flow
import kotlinx.coroutines.flow.StateFlow

interface CustomFlow<out T>: Flow<T>

@OptIn(ExperimentalForInheritanceCoroutinesApi::class)
interface CustomStateFlow<out T>: StateFlow<T>

// FILE: test.kt
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,13 @@

// FILE: customFlows.kt

import kotlinx.coroutines.ExperimentalForInheritanceCoroutinesApi
import kotlinx.coroutines.flow.Flow
import kotlinx.coroutines.flow.StateFlow

interface CustomFlow<out T>: Flow<T>

@OptIn(ExperimentalForInheritanceCoroutinesApi::class)
interface CustomStateFlow<out T>: StateFlow<T>

// FILE: test.kt
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
// FIR_IDENTICAL
// FILE: customStateFlow.kt

import kotlinx.coroutines.ExperimentalForInheritanceCoroutinesApi
import kotlinx.coroutines.flow.StateFlow

@OptIn(ExperimentalForInheritanceCoroutinesApi::class)
interface CustomStateFlow<out T>: StateFlow<T>

// FILE: customCoroutineScope.kt
Expand Down

0 comments on commit b9aa3b4

Please sign in to comment.