Skip to content

Commit 5b5303e

Browse files
author
Bijan Chokoufe Nejad
authored
Bump versions (#13)
1 parent 45251a6 commit 5b5303e

File tree

3 files changed

+13
-14
lines changed

3 files changed

+13
-14
lines changed

build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ lazy val commonScalaSettings = Seq(
2525

2626
lazy val sharedDependencies =
2727
Seq(
28-
enumaratum,
28+
enumeratum,
2929
enumeratumCirce,
3030
circeRefined,
3131
circeCore,

project/Dependencies.scala

Lines changed: 11 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,13 @@
11
import sbt._
22

33
object Dependencies {
4-
lazy val http4sVersion = "0.21.0-M5"
54

65
lazy val scalatest = "org.scalatest" %% "scalatest" % "3.1.1"
76
lazy val scalameta = "org.scalameta" %% "scalameta" % "4.3.0"
8-
lazy val scalafmt = "org.scalameta" %% "scalafmt-dynamic" % "2.5.0-RC2"
7+
lazy val scalafmt = "org.scalameta" %% "scalafmt-dynamic" % "2.6.4"
98

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

21-
lazy val http4sCore = "org.http4s" %% "http4s-core" % http4sVersion
22-
lazy val http4sDsl = "org.http4s" %% "http4s-dsl" % http4sVersion
23-
lazy val http4sCirce = "org.http4s" %% "http4s-circe" % http4sVersion
24-
lazy val http4sServer = "org.http4s" %% "http4s-server" % http4sVersion
20+
lazy val http4sVersion = "0.21.7"
21+
lazy val http4sCore = "org.http4s" %% "http4s-core" % http4sVersion
22+
lazy val http4sDsl = "org.http4s" %% "http4s-dsl" % http4sVersion
23+
lazy val http4sCirce = "org.http4s" %% "http4s-circe" % http4sVersion
24+
lazy val http4sServer = "org.http4s" %% "http4s-server" % http4sVersion
2525

26-
lazy val swaggerCore = "io.swagger.core.v3" % "swagger-core" % "2.0.9"
27-
lazy val swaggerParser = "io.swagger.parser.v3" % "swagger-parser" % "2.0.14"
28-
29-
def scriptedPlugin(libVersion: String) = "org.scala-sbt" %% "scripted-plugin" % libVersion
26+
lazy val swaggerCore = "io.swagger.core.v3" % "swagger-core" % "2.1.4"
27+
lazy val swaggerParser = "io.swagger.parser.v3" % "swagger-parser" % "2.0.21"
28+
def scriptedPlugin(libVersion: String) = "org.scala-sbt" %% "scripted-plugin" % libVersion
3029

3130
}

project/ScalaOptions.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import sbt._
22

33
object ScalaOptions {
4-
lazy val scala213 = "2.13.1"
4+
lazy val scala213 = "2.13.2"
55
lazy val scala212 = "2.12.11"
66
lazy val supportedVersions = List(scala213, scala212)
77

0 commit comments

Comments
 (0)