Skip to content

Commit

Permalink
Release 3.20.0
Browse files Browse the repository at this point in the history
  • Loading branch information
darkfrog26 committed Mar 1, 2024
1 parent 559628b commit a698b0c
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,13 @@ Scarango is published to Sonatype OSS and Maven Central currently supporting Sca
Configuring the driver in SBT requires:

```
libraryDependencies += "com.outr" %% "scarango-driver" % "3.19.3"
libraryDependencies += "com.outr" %% "scarango-driver" % "3.20.0"
```

Or in Mill:

```
ivy"com.outr::scarango-driver:3.19.3"
ivy"com.outr::scarango-driver:3.20.0"
```

## Introduction
Expand Down Expand Up @@ -95,7 +95,7 @@ Database.people.insert(Person("User 1", 30)).unsafeRunSync()
// document = Person(
// name = "User 1",
// age = 30,
// _id = Id(value = "kZ9Ne8CXQSt2JH18WOgZFpsWIvH1GUGJ", collection = "people")
// _id = Id(value = "Ncx2NMcIpYGtWe9sOd8byYLRuYOCPrnH", collection = "people")
// ),
// newDocument = None,
// oldDocument = None
Expand Down Expand Up @@ -126,17 +126,17 @@ Database
// Person(
// name = "User 1",
// age = 30,
// _id = Id(value = "kZ9Ne8CXQSt2JH18WOgZFpsWIvH1GUGJ", collection = "people")
// _id = Id(value = "Ncx2NMcIpYGtWe9sOd8byYLRuYOCPrnH", collection = "people")
// ),
// Person(
// name = "Adam",
// age = 21,
// _id = Id(value = "gpGgwP1SpzX4ISt0Ugu6LEytw3COjI5s", collection = "people")
// _id = Id(value = "b61wDJm3nMePIBhzHXpE8jOD52NRvL1V", collection = "people")
// ),
// Person(
// name = "Bethany",
// age = 19,
// _id = Id(value = "f0rIUgyJzUJFthSPyXBzslQo070QmrrA", collection = "people")
// _id = Id(value = "Ps4IYa9Wfge3y0lwMw3Yxs6ln3CsW3cg", collection = "people")
// )
// )
```
Expand Down
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ val scala3 = "3.3.1"

name := "scarango"
ThisBuild / organization := "com.outr"
ThisBuild / version := "3.20.0-SNAPSHOT"
ThisBuild / version := "3.20.0"
ThisBuild / scalaVersion := scala213
ThisBuild / crossScalaVersions := List(scala3, scala213)
ThisBuild / scalacOptions ++= Seq("-unchecked", "-deprecation")
Expand Down

0 comments on commit a698b0c

Please sign in to comment.