From a698b0caeb7bb8b82c6d4e1173458a8ee25b123e Mon Sep 17 00:00:00 2001 From: Matt Hicks Date: Fri, 1 Mar 2024 09:44:22 -0600 Subject: [PATCH] Release 3.20.0 --- README.md | 12 ++++++------ build.sbt | 2 +- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 39e5ed2..a4d0a97 100644 --- a/README.md +++ b/README.md @@ -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 @@ -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 @@ -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") // ) // ) ``` diff --git a/build.sbt b/build.sbt index 0822ae6..3297ec9 100644 --- a/build.sbt +++ b/build.sbt @@ -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")