diff --git a/README.markdown b/README.markdown index 6a0a634..7265a33 100644 --- a/README.markdown +++ b/README.markdown @@ -52,6 +52,7 @@ Scala-Forklift supports both Slick 3.1 and Slick 3.2. The latest versions of Sca |----------------|---------------|----------------| | 2.11.x | `3.1.x` | `libraryDependencies += "com.liyaos" %% "scala-forklift-slick" % "0.2.3"` | | 2.12.x, 2.11.x | `3.2.x` | `libraryDependencies += "com.liyaos" %% "scala-forklift-slick" % "0.3.1"` | +| 2.13.x, 2.12.x | `3.3.x` | `libraryDependencies += "com.liyaos" %% "scala-forklift-slick" % "0.3.2"` | For tutorial and example code, please check [example](/example). diff --git a/build.sbt b/build.sbt index 0d7136d..7145bdc 100644 --- a/build.sbt +++ b/build.sbt @@ -9,14 +9,15 @@ lazy val supportedScalaVersions = List(scala212, scala213) lazy val coreDependencies = libraryDependencies ++= List( "org.scala-lang" % "scala-compiler" % scalaVersion.value, - "com.typesafe" % "config" % "1.3.0", + "com.typesafe" % "config" % "1.3.2", "org.eclipse.jgit" % "org.eclipse.jgit" % "4.0.1.201506240215-r" ) lazy val slickDependencies = List( "com.typesafe.slick" %% "slick" % slickVersion, "com.typesafe.slick" %% "slick-codegen" % slickVersion, - "io.github.nafg" %% "slick-migration-api" % "0.7.0" + "io.github.nafg" %% "slick-migration-api" % "0.7.0", + "org.scala-lang.modules" %% "scala-collection-compat" % "2.0.0" ) lazy val slickDependenciesWithTests = slickDependencies ++ List( diff --git a/version.sbt b/version.sbt index 402bddf..8ed576b 100644 --- a/version.sbt +++ b/version.sbt @@ -1 +1 @@ -version in ThisBuild := "0.3.2-SNAPSHOT" +version in ThisBuild := "0.3.2"