diff --git a/README.markdown b/README.markdown index 8d8e6f8..59663f8 100644 --- a/README.markdown +++ b/README.markdown @@ -52,7 +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.11.x | `3.2.x` | `libraryDependencies += "com.liyaos" %% "scala-forklift-slick" % "0.2.2-slick3.2"` | -| 2.12.x | `3.2.x` | `libraryDependencies += "com.liyaos" %% "scala-forklift-slick" % "0.3.0"` | +| 2.12.x | `3.2.x` | `libraryDependencies += "com.liyaos" %% "scala-forklift-slick" % "0.3.1"` | For tutorial and example code, please check [example](/example). diff --git a/build.sbt b/build.sbt index 37c783c..5e75dba 100644 --- a/build.sbt +++ b/build.sbt @@ -1,7 +1,7 @@ val repoKind = SettingKey[String]("repo-kind", "Maven repository kind (\"snapshots\" or \"releases\")") -lazy val slickVersion = "3.2.0-M2" +lazy val slickVersion = "3.2.1" def coreDependencies(scalaVersion: String) = List( "org.scala-lang" % "scala-compiler" % scalaVersion, diff --git a/example/build.sbt b/example/build.sbt index be6bced..1764d98 100644 --- a/example/build.sbt +++ b/example/build.sbt @@ -5,9 +5,9 @@ addCommandAlias("mgm", "migration_manager/run") addCommandAlias("mg", "migrations/run") -lazy val slickVersion = "3.2.0-M2" +lazy val slickVersion = "3.2.1" -lazy val forkliftVersion = "0.3.0" +lazy val forkliftVersion = "0.3.1" lazy val commonSettings = Seq( organization := "com.liyaos",