Skip to content

Commit 91fb7db

Browse files
committed
Release 3.16.0
1 parent dc56373 commit 91fb7db

File tree

2 files changed

+8
-7
lines changed

2 files changed

+8
-7
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,13 @@ Scarango is published to Sonatype OSS and Maven Central currently supporting Sca
1414
Configuring the driver in SBT requires:
1515

1616
```
17-
libraryDependencies += "com.outr" %% "scarango-driver" % "3.15.0"
17+
libraryDependencies += "com.outr" %% "scarango-driver" % "3.16.0"
1818
```
1919

2020
Or in Mill:
2121

2222
```
23-
ivy"com.outr::scarango-driver:3.15.0"
23+
ivy"com.outr::scarango-driver:3.16.0"
2424
```
2525

2626
## Introduction
@@ -95,7 +95,7 @@ Database.people.insert(Person("User 1", 30)).unsafeRunSync()
9595
// document = Person(
9696
// name = "User 1",
9797
// age = 30,
98-
// _id = Id(value = "JeVP6ZHxC2Wqt8qzJQJJh1m6ptoSqi5v", collection = "people")
98+
// _id = Id(value = "UWMZ8xF690pM7jPnqMxDqQNh2tzbYBkd", collection = "people")
9999
// ),
100100
// newDocument = None,
101101
// oldDocument = None
@@ -126,17 +126,17 @@ Database
126126
// Person(
127127
// name = "User 1",
128128
// age = 30,
129-
// _id = Id(value = "JeVP6ZHxC2Wqt8qzJQJJh1m6ptoSqi5v", collection = "people")
129+
// _id = Id(value = "UWMZ8xF690pM7jPnqMxDqQNh2tzbYBkd", collection = "people")
130130
// ),
131131
// Person(
132132
// name = "Adam",
133133
// age = 21,
134-
// _id = Id(value = "uTxNdxJvBeg0uipsnX9cuRh5T85POg5v", collection = "people")
134+
// _id = Id(value = "AvwhGF7wE3yk94Z2wgn5GuuKzem6DLpC", collection = "people")
135135
// ),
136136
// Person(
137137
// name = "Bethany",
138138
// age = 19,
139-
// _id = Id(value = "j9j7CXzsVCGX8B8gEa47zpdF80kCr3gM", collection = "people")
139+
// _id = Id(value = "YXhFCwaeh8Gme5unCbwuqK7Jbm9Q790A", collection = "people")
140140
// )
141141
// )
142142
```

build.sbt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ val scala3 = "3.3.1"
77

88
name := "scarango"
99
ThisBuild / organization := "com.outr"
10-
ThisBuild / version := "3.16.0-SNAPSHOT"
10+
ThisBuild / version := "3.16.0"
1111
ThisBuild / scalaVersion := scala213
1212
ThisBuild / crossScalaVersions := List(scala3, scala213)
1313
ThisBuild / scalacOptions ++= Seq("-unchecked", "-deprecation")
@@ -25,6 +25,7 @@ ThisBuild / scmInfo := Some(
2525
"scm:git@github.com:outr/scarango.git"
2626
)
2727
)
28+
ThisBuild / versionScheme := Some("pvp")
2829
ThisBuild / developers := List(
2930
Developer(id="darkfrog", name="Matt Hicks", email="matt@matthicks.com", url=url("https://matthicks.com"))
3031
)

0 commit comments

Comments
 (0)