diff --git a/.travis.yml b/.travis.yml index 06cc4f3..e4bd498 100755 --- a/.travis.yml +++ b/.travis.yml @@ -1,6 +1,6 @@ language: scala scala: -- 2.12.10 +- 2.13.1 jdk: - openjdk8 script: diff --git a/build.sbt b/build.sbt index c6e8270..d2583a7 100755 --- a/build.sbt +++ b/build.sbt @@ -1,6 +1,6 @@ import ProjectPlugin.autoImport._ -val scalaExercisesV = "0.5.0-SNAPSHOT" +val scalaExercisesV = "0.6.0-SNAPSHOT" def dep(artifactId: String) = "org.scala-exercises" %% artifactId % scalaExercisesV diff --git a/project/ProjectPlugin.scala b/project/ProjectPlugin.scala index cded9b1..fac843c 100644 --- a/project/ProjectPlugin.scala +++ b/project/ProjectPlugin.scala @@ -15,7 +15,7 @@ object ProjectPlugin extends AutoPlugin { object autoImport { lazy val V = new { - val scala212: String = "2.12.10" + val scala213: String = "2.13.1" val shapeless: String = "2.3.3" val scalatest: String = "3.1.0" val scalatestplusScheck: String = "3.1.0.0-RC2" @@ -40,7 +40,7 @@ object ProjectPlugin extends AutoPlugin { organizationEmail = "hello@47deg.com" ), orgLicenseSetting := ApacheLicense, - scalaVersion := V.scala212, + scalaVersion := V.scala213, scalaOrganization := "org.scala-lang", resolvers ++= Seq( Resolver.mavenLocal, diff --git a/project/build.properties b/project/build.properties index 1fc4b80..2930ee9 100644 --- a/project/build.properties +++ b/project/build.properties @@ -1 +1 @@ -sbt.version=1.2.8 \ No newline at end of file +sbt.version=1.3.7 \ No newline at end of file diff --git a/project/plugins.sbt b/project/plugins.sbt index b149c55..109ce8f 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -2,5 +2,5 @@ resolvers ++= Seq( Resolver.sonatypeRepo("snapshots") ) -addSbtPlugin("org.scala-exercises" % "sbt-exercise" % "0.5.0-SNAPSHOT") +addSbtPlugin("org.scala-exercises" % "sbt-exercise" % "0.6.0-SNAPSHOT") addSbtPlugin("com.47deg" % "sbt-org-policies" % "0.12.0-M3") diff --git a/src/main/scala/scalachecklib/PropertiesSection.scala b/src/main/scala/scalachecklib/PropertiesSection.scala index 76ba604..e637b98 100644 --- a/src/main/scala/scalachecklib/PropertiesSection.scala +++ b/src/main/scala/scalachecklib/PropertiesSection.scala @@ -218,6 +218,6 @@ object PropertiesSection } - check(Prop.all(new ZeroSpecification().properties.map(_._2): _*)) + check(Prop.all(new ZeroSpecification().properties.to(List).map(_._2): _*)) } } diff --git a/version.sbt b/version.sbt index 404aa03..3f478e0 100644 --- a/version.sbt +++ b/version.sbt @@ -1 +1 @@ -version in ThisBuild := "0.5.0-SNAPSHOT" +version in ThisBuild := "0.6.0-SNAPSHOT"