Skip to content

Commit

Permalink
⬆️ upgrade dependencies and build for Scala 2.13 [closes #9]
Browse files Browse the repository at this point in the history
  • Loading branch information
alaz committed Jun 18, 2019
1 parent 4c8f4c4 commit 96e64a9
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 8 deletions.
8 changes: 3 additions & 5 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ homepage := Some(url("https://github.com/osinka/scala-i18n"))

startYear := Some(2014)

scalaVersion := "2.12.1"
scalaVersion := "2.13.0"

crossScalaVersions := Seq("2.11.8", "2.12.1")
crossScalaVersions := Seq("2.11.11", "2.12.8", "2.13.0")

licenses += "Apache License, Version 2.0" -> url("http://www.apache.org/licenses/LICENSE-2.0")

Expand All @@ -19,7 +19,7 @@ description := """Play-like internationalized messages for any Scala"""
scalacOptions ++= List("-deprecation", "-unchecked", "-feature")

libraryDependencies ++= Seq(
"org.scalatest" %% "scalatest" % "3.0.1" % "test"
"org.scalatest" %% "scalatest" % "3.0.8" % "test"
)

credentials += {
Expand All @@ -40,8 +40,6 @@ publishTo := {
)
}

useGpg := true

pomExtra := <xml:group>
<developers>
<developer>
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=0.13.13
sbt.version=1.2.8
2 changes: 1 addition & 1 deletion project/pgp.sbt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
addSbtPlugin("com.jsuereth" % "sbt-pgp" % "1.0.1")
addSbtPlugin("com.jsuereth" % "sbt-pgp" % "1.1.2-1")
2 changes: 1 addition & 1 deletion version.sbt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@

version in ThisBuild := "1.0.3-SNAPSHOT"
version in ThisBuild := "1.0.3"

0 comments on commit 96e64a9

Please sign in to comment.