From ed239aad260ff3cf0d96cef64f969fa9e4463ad7 Mon Sep 17 00:00:00 2001 From: Juan Pedro Moreno Date: Thu, 8 Sep 2016 19:34:07 +0200 Subject: [PATCH] Bumps version and adds logo --- build.sbt | 2 +- project/plugins.sbt | 2 +- src/main/resources/scalacheck.svg | 12 ++++++++++++ src/main/scala/scalachecklib/ScalacheckLibrary.scala | 2 ++ 4 files changed, 16 insertions(+), 2 deletions(-) create mode 100644 src/main/resources/scalacheck.svg diff --git a/build.sbt b/build.sbt index a8a91dc..20a92f5 100755 --- a/build.sbt +++ b/build.sbt @@ -5,7 +5,7 @@ lazy val scalacheck = (project in file(".")) organization := "org.scala-exercises", name := "exercises-scalacheck", scalaVersion := "2.11.7", - version := "0.2.3-SNAPSHOT", + version := "0.2.5-SNAPSHOT", resolvers ++= Seq( Resolver.sonatypeRepo("snapshots"), Resolver.sonatypeRepo("releases") diff --git a/project/plugins.sbt b/project/plugins.sbt index 3638e94..3eaab73 100755 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -2,5 +2,5 @@ resolvers ++= Seq( Resolver.sonatypeRepo("snapshots") ) -addSbtPlugin("org.scala-exercises" % "sbt-exercise" % "0.2.3-SNAPSHOT", "0.13", "2.10") +addSbtPlugin("org.scala-exercises" % "sbt-exercise" % "0.2.5-SNAPSHOT", "0.13", "2.10") addSbtPlugin("com.jsuereth" % "sbt-pgp" % "1.0.0") diff --git a/src/main/resources/scalacheck.svg b/src/main/resources/scalacheck.svg new file mode 100644 index 0000000..83f47cd --- /dev/null +++ b/src/main/resources/scalacheck.svg @@ -0,0 +1,12 @@ + + + + ScalaCheck + Created with Sketch. + + + + + + + \ No newline at end of file diff --git a/src/main/scala/scalachecklib/ScalacheckLibrary.scala b/src/main/scala/scalachecklib/ScalacheckLibrary.scala index 5fe5ac4..2e6e4e9 100644 --- a/src/main/scala/scalachecklib/ScalacheckLibrary.scala +++ b/src/main/scala/scalachecklib/ScalacheckLibrary.scala @@ -14,4 +14,6 @@ object ScalacheckLibrary extends org.scalaexercises.definitions.Library { PropertiesSection, GeneratorsSection ) + + override def logoPath = "scalacheck" }