diff --git a/README.md b/README.md index 0060bd17..b6a0cad5 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.18.5" +libraryDependencies += "com.outr" %% "scarango-driver" % "3.19.0" ``` Or in Mill: ``` -ivy"com.outr::scarango-driver:3.18.5" +ivy"com.outr::scarango-driver:3.19.0" ``` ## Introduction @@ -95,7 +95,7 @@ Database.people.insert(Person("User 1", 30)).unsafeRunSync() // document = Person( // name = "User 1", // age = 30, -// _id = Id(value = "OZww7bxgOrn0TuOOKnSsb5l9rgfoRwC2", collection = "people") +// _id = Id(value = "CqfBv9slFeqcyRlWYo3kfmNGuav73uy8", collection = "people") // ), // newDocument = None, // oldDocument = None @@ -126,17 +126,17 @@ Database // Person( // name = "User 1", // age = 30, -// _id = Id(value = "OZww7bxgOrn0TuOOKnSsb5l9rgfoRwC2", collection = "people") +// _id = Id(value = "CqfBv9slFeqcyRlWYo3kfmNGuav73uy8", collection = "people") // ), // Person( // name = "Adam", // age = 21, -// _id = Id(value = "4ivtPFvZOyZEEmcRjOmv4qE6os9tHUY4", collection = "people") +// _id = Id(value = "3eLolgj2SdAGyHXhArtt4myLFjlyNdaA", collection = "people") // ), // Person( // name = "Bethany", // age = 19, -// _id = Id(value = "3ld8U104H7Aex2bivwFnC6xZl7uy6976", collection = "people") +// _id = Id(value = "pcrY8CwoskM3E2gjRovX3uhZiLPvEUrK", collection = "people") // ) // ) ``` diff --git a/build.sbt b/build.sbt index 2c46baee..7c65771d 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.19.0-SNAPSHOT" +ThisBuild / version := "3.19.0" ThisBuild / scalaVersion := scala213 ThisBuild / crossScalaVersions := List(scala3, scala213) ThisBuild / scalacOptions ++= Seq("-unchecked", "-deprecation") diff --git a/core/src/main/scala/com/outr/arango/package.scala b/core/src/main/scala/com/outr/arango/package.scala index 98f06383..19a29f6d 100644 --- a/core/src/main/scala/com/outr/arango/package.scala +++ b/core/src/main/scala/com/outr/arango/package.scala @@ -4,7 +4,6 @@ import scala.concurrent.duration.FiniteDuration import scala.language.implicitConversions package object arango { - implicit def field2String[F](field: Field[F]): String = field.fieldName implicit class FieldList(fields: List[Field[_]]) { object index { def persistent(sparse: Boolean = false, diff --git a/project/Dependencies.scala b/project/Dependencies.scala index d1f4ef8e..93a48623 100644 --- a/project/Dependencies.scala +++ b/project/Dependencies.scala @@ -2,7 +2,7 @@ import sbt.* object Dependencies { object version { - val fabric: String = "1.13.0" + val fabric: String = "1.13.1" val profig: String = "3.4.12"