From 8aa2ae28c5acb2e6f733c93387be87eff4295e8d Mon Sep 17 00:00:00 2001 From: Matt Hicks Date: Tue, 14 Feb 2023 14:53:34 -0600 Subject: [PATCH] Release 3.8.3 --- README.md | 10 +++++----- build.sbt | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index aa01c1c0..a166982c 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.8.2" +libraryDependencies += "com.outr" %% "scarango-driver" % "3.8.3" ``` Or in Mill: ``` -ivy"com.outr::scarango-driver:3.8.2" +ivy"com.outr::scarango-driver:3.8.3" ``` ## Introduction @@ -121,17 +121,17 @@ Database // Person( // name = "User 1", // age = 30, -// _id = Id(value = "fsUrM4CFxwwKwXwpLYZvUjul5uB6h68h", collection = "people") +// _id = Id(value = "CasoIKqyHePo5YfGvHdUYwgeoMamfC96", collection = "people") // ), // Person( // name = "Adam", // age = 21, -// _id = Id(value = "wlqEc2CWnWdh5Bg0drZUZKoEr0CvrCmn", collection = "people") +// _id = Id(value = "jS9riP1YGu9hxjsTbDsXLaL3gIPDE3RI", collection = "people") // ), // Person( // name = "Bethany", // age = 19, -// _id = Id(value = "vPQZXqj0abHso0Q58wjSFbmzf0XJmfb6", collection = "people") +// _id = Id(value = "CyTGk2u1lVCwSR4ha1AL6UKUdU3V3ECq", collection = "people") // ) // ) ``` diff --git a/build.sbt b/build.sbt index 568031e5..1e648e93 100644 --- a/build.sbt +++ b/build.sbt @@ -6,7 +6,7 @@ val scala3 = "3.2.2" name := "scarango" ThisBuild / organization := "com.outr" -ThisBuild / version := "3.8.3-SNAPSHOT" +ThisBuild / version := "3.8.3" ThisBuild / scalaVersion := scala213 ThisBuild / crossScalaVersions := List(scala3, scala213) ThisBuild / scalacOptions ++= Seq("-unchecked", "-deprecation")