Skip to content

Commit

Permalink
Bump versions (#13)
Browse files Browse the repository at this point in the history
  • Loading branch information
Bijan Chokoufe Nejad authored Aug 18, 2020
1 parent 45251a6 commit 5b5303e
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 14 deletions.
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ lazy val commonScalaSettings = Seq(

lazy val sharedDependencies =
Seq(
enumaratum,
enumeratum,
enumeratumCirce,
circeRefined,
circeCore,
Expand Down
23 changes: 11 additions & 12 deletions project/Dependencies.scala
Original file line number Diff line number Diff line change
@@ -1,14 +1,13 @@
import sbt._

object Dependencies {
lazy val http4sVersion = "0.21.0-M5"

lazy val scalatest = "org.scalatest" %% "scalatest" % "3.1.1"
lazy val scalameta = "org.scalameta" %% "scalameta" % "4.3.0"
lazy val scalafmt = "org.scalameta" %% "scalafmt-dynamic" % "2.5.0-RC2"
lazy val scalafmt = "org.scalameta" %% "scalafmt-dynamic" % "2.6.4"

lazy val enumaratum = "com.beachape" %% "enumeratum" % "1.5.13"
lazy val enumeratumCirce = "com.beachape" %% "enumeratum-circe" % "1.5.22"
lazy val enumeratum = "com.beachape" %% "enumeratum" % "1.6.1"
lazy val enumeratumCirce = "com.beachape" %% "enumeratum-circe" % "1.6.1"
lazy val circeRefined = "io.circe" %% "circe-refined" % "0.13.0"
lazy val circeCore = "io.circe" %% "circe-core" % "0.13.0"
lazy val circeParser = "io.circe" %% "circe-parser" % "0.13.0"
Expand All @@ -18,14 +17,14 @@ object Dependencies {
lazy val circeDerivation = "io.circe" %% "circe-derivation" % "0.13.0-M4"
lazy val scalaCompat = "org.scala-lang.modules" %% "scala-collection-compat" % "2.1.2"

lazy val http4sCore = "org.http4s" %% "http4s-core" % http4sVersion
lazy val http4sDsl = "org.http4s" %% "http4s-dsl" % http4sVersion
lazy val http4sCirce = "org.http4s" %% "http4s-circe" % http4sVersion
lazy val http4sServer = "org.http4s" %% "http4s-server" % http4sVersion
lazy val http4sVersion = "0.21.7"
lazy val http4sCore = "org.http4s" %% "http4s-core" % http4sVersion
lazy val http4sDsl = "org.http4s" %% "http4s-dsl" % http4sVersion
lazy val http4sCirce = "org.http4s" %% "http4s-circe" % http4sVersion
lazy val http4sServer = "org.http4s" %% "http4s-server" % http4sVersion

lazy val swaggerCore = "io.swagger.core.v3" % "swagger-core" % "2.0.9"
lazy val swaggerParser = "io.swagger.parser.v3" % "swagger-parser" % "2.0.14"

def scriptedPlugin(libVersion: String) = "org.scala-sbt" %% "scripted-plugin" % libVersion
lazy val swaggerCore = "io.swagger.core.v3" % "swagger-core" % "2.1.4"
lazy val swaggerParser = "io.swagger.parser.v3" % "swagger-parser" % "2.0.21"
def scriptedPlugin(libVersion: String) = "org.scala-sbt" %% "scripted-plugin" % libVersion

}
2 changes: 1 addition & 1 deletion project/ScalaOptions.scala
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import sbt._

object ScalaOptions {
lazy val scala213 = "2.13.1"
lazy val scala213 = "2.13.2"
lazy val scala212 = "2.12.11"
lazy val supportedVersions = List(scala213, scala212)

Expand Down

0 comments on commit 5b5303e

Please sign in to comment.