Skip to content

Commit

Permalink
Bump Arrow to v2.0.0-beta.1
Browse files Browse the repository at this point in the history
  • Loading branch information
ShreckYe committed Nov 14, 2024
1 parent d578e0d commit 642c2c9
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
2 changes: 1 addition & 1 deletion buildSrc/src/main/kotlin/VersionsAndDependencies.kt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import com.huanshankeji.CommonVersions

val projectVersion = "0.6.0-SNAPSHOT"

val commonVersions = CommonVersions(arrow = "2.0.0-alpha.4") // for Wasm JS
val commonVersions = CommonVersions(arrow = "2.0.0-beta.1") // for Wasm JS
val commonDependencies = CommonDependencies(commonVersions)
val commonGradleClasspathDependencies = CommonGradleClasspathDependencies(commonVersions)

Expand Down
4 changes: 4 additions & 0 deletions core/src/commonMain/kotlin/com/huanshankeji/InternalApi.kt
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
package com.huanshankeji

@RequiresOptIn("This API is internal in Huanshankeji Kotlin Common and should not be used. It may be changed or removed in the future without notice.")
annotation class InternalApi
Original file line number Diff line number Diff line change
@@ -1,9 +1,13 @@
@file:OptIn(InternalApi::class)

package com.huanshankeji.exposed

import com.huanshankeji.InternalApi
import org.jetbrains.exposed.sql.*
import org.jetbrains.exposed.sql.statements.*

private const val SELECT_DSL_DEPRECATION_MESSAGE =
@InternalApi
const val SELECT_DSL_DEPRECATION_MESSAGE =
"As part of Exposed SELECT DSL design changes, this will be removed in future releases."

// The select queries are not executed eagerly so just use them directly.
Expand Down

0 comments on commit 642c2c9

Please sign in to comment.