Skip to content

Commit e69ed96

Browse files
committed
Updated to Scala 2.13.1
1 parent c3b70a6 commit e69ed96

File tree

7 files changed

+8
-8
lines changed

7 files changed

+8
-8
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
language: scala
22
scala:
3-
- 2.12.10
3+
- 2.13.1
44
jdk:
55
- openjdk8
66
script:

build.sbt

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

3-
val scalaExercisesV = "0.5.0-SNAPSHOT"
3+
val scalaExercisesV = "0.6.0-SNAPSHOT"
44

55
def dep(artifactId: String) = "org.scala-exercises" %% artifactId % scalaExercisesV
66

project/ProjectPlugin.scala

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ object ProjectPlugin extends AutoPlugin {
1515
object autoImport {
1616

1717
lazy val V = new {
18-
val scala212: String = "2.12.10"
18+
val scala213: String = "2.13.1"
1919
val shapeless: String = "2.3.3"
2020
val scalatest: String = "3.1.0"
2121
val scalatestplusScheck: String = "3.1.0.0-RC2"
@@ -40,7 +40,7 @@ object ProjectPlugin extends AutoPlugin {
4040
organizationEmail = "hello@47deg.com"
4141
),
4242
orgLicenseSetting := ApacheLicense,
43-
scalaVersion := V.scala212,
43+
scalaVersion := V.scala213,
4444
scalaOrganization := "org.scala-lang",
4545
resolvers ++= Seq(
4646
Resolver.mavenLocal,

project/build.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
sbt.version=1.2.8
1+
sbt.version=1.3.7

project/plugins.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@ resolvers ++= Seq(
22
Resolver.sonatypeRepo("snapshots")
33
)
44

5-
addSbtPlugin("org.scala-exercises" % "sbt-exercise" % "0.5.0-SNAPSHOT")
5+
addSbtPlugin("org.scala-exercises" % "sbt-exercise" % "0.6.0-SNAPSHOT")
66
addSbtPlugin("com.47deg" % "sbt-org-policies" % "0.12.0-M3")

src/main/scala/scalachecklib/PropertiesSection.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -218,6 +218,6 @@ object PropertiesSection
218218

219219
}
220220

221-
check(Prop.all(new ZeroSpecification().properties.map(_._2): _*))
221+
check(Prop.all(new ZeroSpecification().properties.to(List).map(_._2): _*))
222222
}
223223
}

version.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
version in ThisBuild := "0.5.0-SNAPSHOT"
1+
version in ThisBuild := "0.6.0-SNAPSHOT"

0 commit comments

Comments
 (0)