Skip to content

Commit

Permalink
Release 0.17.0
Browse files Browse the repository at this point in the history
  • Loading branch information
darkfrog26 committed Nov 28, 2024
1 parent 81b30d2 commit 9b192d2
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 8 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ Computationally focused database using pluggable stores

To add all modules:
```scala
libraryDependencies += "com.outr" %% "lightdb-all" % "0.16.0"
libraryDependencies += "com.outr" %% "lightdb-all" % "0.17.0"
```

For a specific implementation like Lucene:
```scala
libraryDependencies += "com.outr" %% "lightdb-lucene" % "0.16.0"
libraryDependencies += "com.outr" %% "lightdb-lucene" % "0.17.0"
```
9 changes: 3 additions & 6 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ val developerURL: String = "https://matthicks.com"

name := projectName
ThisBuild / organization := org
ThisBuild / version := "0.16.0"
ThisBuild / version := "0.17.0"
ThisBuild / scalaVersion := scala213
ThisBuild / crossScalaVersions := allScalaVersions
ThisBuild / scalacOptions ++= Seq("-unchecked", "-deprecation")
Expand All @@ -37,9 +37,6 @@ ThisBuild / developers := List(
Developer(id=developerId, name=developerName, email=email, url=url(developerURL))
)

ThisBuild / resolvers += Resolver.mavenLocal
ThisBuild / resolvers += "jitpack" at "https://jitpack.io"

ThisBuild / outputStrategy := Some(StdoutOutput)

ThisBuild / javaOptions ++= Seq(
Expand All @@ -59,7 +56,7 @@ val spatial4JVersion: String = "0.8"

val jtsVersion: String = "1.20.0"

val haloDBVersion: String = "0.5.6"
val haloDBVersion: String = "0.5.7"

val rocksDBVersion: String = "9.7.3"

Expand Down Expand Up @@ -212,7 +209,7 @@ lazy val halodb = project.in(file("halodb"))
name := s"$projectName-halo",
fork := true,
libraryDependencies ++= Seq(
"com.github.yahoo" % "HaloDB" % haloDBVersion,
"com.outr" % "halodb-revive" % haloDBVersion,
"org.scalatest" %% "scalatest" % scalaTestVersion % Test
)
)
Expand Down

0 comments on commit 9b192d2

Please sign in to comment.