Skip to content

Commit

Permalink
0.3.2.
Browse files Browse the repository at this point in the history
Signed-off-by: Yao Li <hnkfliyao@gmail.com>
  • Loading branch information
lastland committed Apr 24, 2020
1 parent cfed58d commit abbce5b
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
1 change: 1 addition & 0 deletions README.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -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).

Expand Down
5 changes: 3 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand Down
2 changes: 1 addition & 1 deletion version.sbt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version in ThisBuild := "0.3.2-SNAPSHOT"
version in ThisBuild := "0.3.2"

0 comments on commit abbce5b

Please sign in to comment.