From a597af2abebe2f94a94d75384719d7347749dddd Mon Sep 17 00:00:00 2001 From: Matt Hicks Date: Mon, 27 Nov 2023 18:12:02 -0600 Subject: [PATCH] Release 3.18.0 --- README.md | 12 ++++++------ build.sbt | 2 +- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 1a9cb3da..de62d9b0 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.17.0" +libraryDependencies += "com.outr" %% "scarango-driver" % "3.18.0" ``` Or in Mill: ``` -ivy"com.outr::scarango-driver:3.17.0" +ivy"com.outr::scarango-driver:3.18.0" ``` ## Introduction @@ -95,7 +95,7 @@ Database.people.insert(Person("User 1", 30)).unsafeRunSync() // document = Person( // name = "User 1", // age = 30, -// _id = Id(value = "9tMNQBFYOVE3bufw1sRjhv8gkerKTbiz", collection = "people") +// _id = Id(value = "8V84KBcQYI685ALB6URpOtuYUBKcLQzn", collection = "people") // ), // newDocument = None, // oldDocument = None @@ -126,17 +126,17 @@ Database // Person( // name = "User 1", // age = 30, -// _id = Id(value = "9tMNQBFYOVE3bufw1sRjhv8gkerKTbiz", collection = "people") +// _id = Id(value = "8V84KBcQYI685ALB6URpOtuYUBKcLQzn", collection = "people") // ), // Person( // name = "Adam", // age = 21, -// _id = Id(value = "ViHADwuC2pVwRX2C7EvNBCesiTJACUsv", collection = "people") +// _id = Id(value = "BmVd7BDzycsJzU19TiahCblwH36Ls6wh", collection = "people") // ), // Person( // name = "Bethany", // age = 19, -// _id = Id(value = "P4Ll3SmaQyVmVbpMdoenMfzBiYNcJ9A0", collection = "people") +// _id = Id(value = "0w66ubdSQZ6GFVMrzVjN0gSF5bJLVThH", collection = "people") // ) // ) ``` diff --git a/build.sbt b/build.sbt index 83f1cd5f..a03d622e 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.18.0-SNAPSHOT" +ThisBuild / version := "3.18.0" ThisBuild / scalaVersion := scala213 ThisBuild / crossScalaVersions := List(scala3, scala213) ThisBuild / scalacOptions ++= Seq("-unchecked", "-deprecation")