Skip to content

Commit

Permalink
Release 0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
darkfrog26 committed May 7, 2024
1 parent 4029a7b commit 67f89ed
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Scala versions
val scala213 = "2.13.14"
val scala3 = "3.3.3"
val scala3 = "3.4.1"
val scala2 = List(scala213)
val allScalaVersions = scala3 :: scala2

Expand All @@ -15,7 +15,7 @@ val developerURL: String = "https://matthicks.com"

name := projectName
ThisBuild / organization := org
ThisBuild / version := "0.5.0-SNAPSHOT1"
ThisBuild / version := "0.5.0"
ThisBuild / scalaVersion := scala213
ThisBuild / crossScalaVersions := allScalaVersions
ThisBuild / scalacOptions ++= Seq("-unchecked", "-deprecation")
Expand Down
1 change: 1 addition & 0 deletions lucene/src/main/scala/lightdb/lucene/LuceneIndexer.scala
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ import org.apache.lucene.document.{Document => LuceneDocument, Field => LuceneFi

import java.nio.file.{Files, Path}
import java.util.concurrent.ConcurrentHashMap
import fabric.rw._

case class LuceneIndexer[D <: Document[D]](indexSupport: IndexSupport[D],
persistent: Boolean = true,
Expand Down

0 comments on commit 67f89ed

Please sign in to comment.