Skip to content

Commit

Permalink
Release 3.19.0
Browse files Browse the repository at this point in the history
  • Loading branch information
darkfrog26 committed Jan 23, 2024
1 parent a7a0e5f commit ec5f029
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 9 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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")
// )
// )
```
Expand Down
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down
1 change: 0 additions & 1 deletion core/src/main/scala/com/outr/arango/package.scala
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
2 changes: 1 addition & 1 deletion project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -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"

Expand Down

0 comments on commit ec5f029

Please sign in to comment.