diff --git a/README.md b/README.md index 158c20f0..680fb1f5 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.15.0" +libraryDependencies += "com.outr" %% "scarango-driver" % "3.16.0" ``` Or in Mill: ``` -ivy"com.outr::scarango-driver:3.15.0" +ivy"com.outr::scarango-driver:3.16.0" ``` ## Introduction @@ -95,7 +95,7 @@ Database.people.insert(Person("User 1", 30)).unsafeRunSync() // document = Person( // name = "User 1", // age = 30, -// _id = Id(value = "JeVP6ZHxC2Wqt8qzJQJJh1m6ptoSqi5v", collection = "people") +// _id = Id(value = "UWMZ8xF690pM7jPnqMxDqQNh2tzbYBkd", collection = "people") // ), // newDocument = None, // oldDocument = None @@ -126,17 +126,17 @@ Database // Person( // name = "User 1", // age = 30, -// _id = Id(value = "JeVP6ZHxC2Wqt8qzJQJJh1m6ptoSqi5v", collection = "people") +// _id = Id(value = "UWMZ8xF690pM7jPnqMxDqQNh2tzbYBkd", collection = "people") // ), // Person( // name = "Adam", // age = 21, -// _id = Id(value = "uTxNdxJvBeg0uipsnX9cuRh5T85POg5v", collection = "people") +// _id = Id(value = "AvwhGF7wE3yk94Z2wgn5GuuKzem6DLpC", collection = "people") // ), // Person( // name = "Bethany", // age = 19, -// _id = Id(value = "j9j7CXzsVCGX8B8gEa47zpdF80kCr3gM", collection = "people") +// _id = Id(value = "YXhFCwaeh8Gme5unCbwuqK7Jbm9Q790A", collection = "people") // ) // ) ``` diff --git a/build.sbt b/build.sbt index 1efc1986..be866835 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.16.0-SNAPSHOT" +ThisBuild / version := "3.16.0" ThisBuild / scalaVersion := scala213 ThisBuild / crossScalaVersions := List(scala3, scala213) ThisBuild / scalacOptions ++= Seq("-unchecked", "-deprecation") @@ -25,6 +25,7 @@ ThisBuild / scmInfo := Some( "scm:git@github.com:outr/scarango.git" ) ) +ThisBuild / versionScheme := Some("pvp") ThisBuild / developers := List( Developer(id="darkfrog", name="Matt Hicks", email="matt@matthicks.com", url=url("https://matthicks.com")) )