Skip to content

Commit

Permalink
🎉 1.0.0-beta.1
Browse files Browse the repository at this point in the history
  • Loading branch information
fluidsonic committed Oct 19, 2019
1 parent e52f14c commit c7815c4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Installation
`build.gradle.kts`:
```kotlin
dependencies {
implementation("io.fluidsonic.mongo:fluid-mongo:0.9.11")
implementation("io.fluidsonic.mongo:fluid-mongo:1.0.0-beta.1")
}
```

Expand All @@ -39,7 +39,7 @@ suspend fun main() {
collection.insertOne(Document("hello", "world")) // suspending call
collection.insertOne(Document("it's", "so easy!")) // suspending call

collection.find().collect { document ->
collection.find().collect { document -> // Kotlin Flow
println(document)
}
}
Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ plugins {
id("io.fluidsonic.gradle") version "1.0.2"
}

fluidJvmLibrary(name = "mongo", version = "0.9.11")
fluidJvmLibrary(name = "mongo", version = "1.0.0-beta.1")

fluidJvmLibraryVariant(JvmTarget.jdk8) {
description = "Kotlin coroutine support for MongoDB built on top of the official MongoDB Asynchronous Java Driver"
Expand Down

0 comments on commit c7815c4

Please sign in to comment.