From 9b192d2608fbcb0b162a0dbd6b43b13756a1075c Mon Sep 17 00:00:00 2001 From: Matt Hicks Date: Thu, 28 Nov 2024 09:04:48 -0600 Subject: [PATCH] Release 0.17.0 --- README.md | 4 ++-- build.sbt | 9 +++------ 2 files changed, 5 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index d511320..ae98fdd 100644 --- a/README.md +++ b/README.md @@ -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" ``` \ No newline at end of file diff --git a/build.sbt b/build.sbt index 9ee764e..21120f9 100644 --- a/build.sbt +++ b/build.sbt @@ -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") @@ -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( @@ -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" @@ -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 ) )