Skip to content

Commit

Permalink
Minor updates
Browse files Browse the repository at this point in the history
  • Loading branch information
darkfrog26 committed Jun 6, 2024
1 parent 3cc275e commit 362a3eb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 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.4.1"
val scala3 = "3.4.2"
val scala2 = List(scala213)
val allScalaVersions = scala3 :: scala2

Expand All @@ -16,7 +16,7 @@ val developerURL: String = "https://matthicks.com"
name := projectName
ThisBuild / organization := org
ThisBuild / version := "0.11.0-SNAPSHOT"
ThisBuild / scalaVersion := scala213
ThisBuild / scalaVersion := scala3
ThisBuild / crossScalaVersions := allScalaVersions
ThisBuild / scalacOptions ++= Seq("-unchecked", "-deprecation")
ThisBuild / javacOptions ++= Seq("-source", "1.8", "-target", "1.8")
Expand Down
2 changes: 1 addition & 1 deletion sql/src/main/scala/lightdb/sql/SQLIndex.scala
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package lightdb.sql

import fabric.rw.{Convertible, RW}
import fabric.rw._
import lightdb.index.{Index, IndexSupport}
import lightdb.Document
import lightdb.query.Filter
Expand Down

0 comments on commit 362a3eb

Please sign in to comment.