Skip to content

Commit c59fa80

Browse files
committed
pump: Updated to mongokt 0.2.0-beta.20
1 parent a091a87 commit c59fa80

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

gradle/libs.versions.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ kotlin = "2.2.0"
33
kotlinx-serialization = "1.8.1"
44

55
mongodb = "5.5.1"
6-
mongokt = "0.2.0-beta.12"
6+
mongokt = "0.2.0-beta.20"
77

88
[libraries]
99
kotlinx-serialization-json = { module = "org.jetbrains.kotlinx:kotlinx-serialization-json", version.ref = "kotlinx-serialization" }

module-ped-mongodb/src/commonMain/kotlin/expr/Declarations.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@ infix fun BsonFieldCodec<*>.by(expr: Expr<*>) =
1919
/* ============= ------------------ ============= */
2020

2121
@BsonMarker4
22-
fun <T : _Element> `$`(path: BsonFieldCodec<*>) = Expr<T>("$${path.name}".bson)
22+
fun `$`(path: BsonFieldCodec<*>) = Expr<_Element>("$${path.name}".bson)
2323

2424
@BsonMarker4
25-
fun <T : _Element> `$$`(path: BsonFieldCodec<*>) = Expr<T>("$$${path.name}".bson)
25+
fun `$$`(path: BsonFieldCodec<*>) = Expr<_Element>("$$${path.name}".bson)
2626

2727
/* ============= ------------------ ============= */

0 commit comments

Comments
 (0)