From 8f88ca3b0e20c8b0c147e19640afcf87f6b2feb7 Mon Sep 17 00:00:00 2001 From: Matt Hicks Date: Thu, 28 Sep 2023 12:42:42 -0500 Subject: [PATCH] Release 3.15.0 --- README.md | 12 ++++++------ build.sbt | 2 +- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index e8a56821..158c20f0 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.14.1" +libraryDependencies += "com.outr" %% "scarango-driver" % "3.15.0" ``` Or in Mill: ``` -ivy"com.outr::scarango-driver:3.14.1" +ivy"com.outr::scarango-driver:3.15.0" ``` ## Introduction @@ -95,7 +95,7 @@ Database.people.insert(Person("User 1", 30)).unsafeRunSync() // document = Person( // name = "User 1", // age = 30, -// _id = Id(value = "LgTShCb4ym7QMOizymI0VOAhVWHtJxXQ", collection = "people") +// _id = Id(value = "JeVP6ZHxC2Wqt8qzJQJJh1m6ptoSqi5v", collection = "people") // ), // newDocument = None, // oldDocument = None @@ -126,17 +126,17 @@ Database // Person( // name = "User 1", // age = 30, -// _id = Id(value = "LgTShCb4ym7QMOizymI0VOAhVWHtJxXQ", collection = "people") +// _id = Id(value = "JeVP6ZHxC2Wqt8qzJQJJh1m6ptoSqi5v", collection = "people") // ), // Person( // name = "Adam", // age = 21, -// _id = Id(value = "qQVe8KCRSIxvW7x6Fy5TUPTGGi1saJZE", collection = "people") +// _id = Id(value = "uTxNdxJvBeg0uipsnX9cuRh5T85POg5v", collection = "people") // ), // Person( // name = "Bethany", // age = 19, -// _id = Id(value = "ROCaxaNAIV2oWTQP9uzmpD0NJuv3CN8G", collection = "people") +// _id = Id(value = "j9j7CXzsVCGX8B8gEa47zpdF80kCr3gM", collection = "people") // ) // ) ``` diff --git a/build.sbt b/build.sbt index 64ea2e63..3467a260 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.15.0-SNAPSHOT" +ThisBuild / version := "3.15.0" ThisBuild / scalaVersion := scala213 ThisBuild / crossScalaVersions := List(scala3, scala213) ThisBuild / scalacOptions ++= Seq("-unchecked", "-deprecation")