Skip to content

Commit

Permalink
Updates build (#140)
Browse files Browse the repository at this point in the history
* Updates build

* Updates exercises version
  • Loading branch information
juanpedromoreno committed Jun 29, 2020
1 parent de5dbcc commit 8c5f2d1
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions project/ProjectPlugin.scala
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ object ProjectPlugin extends AutoPlugin {
object V {
lazy val cats = "2.1.1"
lazy val catsEffect = "2.1.3"
lazy val http4s = "0.21.5"
lazy val http4s = "0.21.6"
lazy val circe = "0.13.0"
lazy val log4s = "1.7.0"
lazy val scalatest = "3.2.0"
Expand All @@ -27,7 +27,7 @@ object ProjectPlugin extends AutoPlugin {
lazy val jwtCore = "4.3.0"
lazy val coursier = "2.0.0-RC6-21"
lazy val config = "1.4.0"
lazy val scala = "2.13.2"
lazy val scala = "2.13.3"
}

lazy val dockerSettings = Seq(
Expand Down
2 changes: 1 addition & 1 deletion project/build.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
sbt.version=1.3.12
sbt.version=1.3.13
2 changes: 1 addition & 1 deletion project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
addSbtPlugin("com.typesafe.sbt" % "sbt-native-packager" % "1.7.3")
addSbtPlugin("com.eed3si9n" % "sbt-assembly" % "0.14.10")
addSbtPlugin("com.eed3si9n" % "sbt-assembly" % "0.15.0")
addSbtPlugin("se.marcuslonnberg" % "sbt-docker" % "1.5.0")
addSbtPlugin("com.eed3si9n" % "sbt-buildinfo" % "0.9.0")
addSbtPlugin("com.geirsson" % "sbt-ci-release" % "1.5.3")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@ package org.scalaexercises.evaluator
object helper {

val remotes: List[String] = "https://oss.sonatype.org/content/repositories/releases/" :: Nil
val exercisesVersion: String = "0.6.0-SNAPSHOT"
val exercisesVersion: String = "0.6.2"

sealed abstract class ScalaVersion(val version: String)

case object Scala213 extends ScalaVersion("2.13.1")
case object Scala213 extends ScalaVersion("2.13.3")

def toScalaVersion(v: String): ScalaVersion =
v match {
Expand All @@ -48,7 +48,7 @@ object helper {
def circeLibraryDependencies(scala: ScalaVersion): List[Dependency] = {
val sv = scala.version

val circeVersion = "0.12.3"
val circeVersion = "0.13.0"
List(
Dependency("io.circe", s"circe-core_${sv.substring(0, 4)}", circeVersion),
Dependency("io.circe", s"circe-generic_${sv.substring(0, 4)}", circeVersion),
Expand Down

0 comments on commit 8c5f2d1

Please sign in to comment.