Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ branches:
- master
- 1.12.x
- 1.13.x
- 1.14.x
notifications:
email:
- [email protected]
Expand All @@ -15,7 +16,7 @@ notifications:
scala:
- 2.10.7
- 2.11.12
- 2.12.5
- 2.12.6
- 2.13.0-M3
jdk:
- oraclejdk8
Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (c) 2007-2017, Rickard Nilsson
Copyright (c) 2007-2018, Rickard Nilsson

All rights reserved.

Expand Down
2 changes: 1 addition & 1 deletion README.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

[![Join the chat at https://gitter.im/scalacheck/Lobby](https://badges.gitter.im/scalacheck/Lobby.svg)](https://gitter.im/scalacheck/Lobby?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)

[![Build Status](https://secure.travis-ci.org/rickynils/scalacheck.png?branch=master)](http://travis-ci.org/rickynils/scalacheck)
[![Build Status](https://travis-ci.org/rickynils/scalacheck.svg?branch=master)](http://travis-ci.org/rickynils/scalacheck)

ScalaCheck is a library written in [Scala](http://www.scala-lang.org/) and
used for automated property-based testing of Scala or Java programs.
Expand Down
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ lazy val isRelease = false
lazy val travisCommit = Option(System.getenv().get("TRAVIS_COMMIT"))

lazy val scalaVersionSettings = Seq(
scalaVersion := "2.12.5",
scalaVersion := "2.12.6",
crossScalaVersions := Seq("2.10.7", "2.11.12", "2.13.0-M3", scalaVersion.value)
)

Expand Down
4 changes: 2 additions & 2 deletions examples/commands-leveldb/build.sbt
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
name := "commands-leveldb"

scalaVersion := "2.12.5"
scalaVersion := "2.12.6"

libraryDependencies ++= Seq(
"org.scalacheck" %% "scalacheck" % "1.13.5",
"org.scalacheck" %% "scalacheck" % "1.14.0",
"org.fusesource.leveldbjni" % "leveldbjni-all" % "1.8"
// "org.fusesource.leveldbjni" % "leveldbjni-all" % "1.7"
// "org.fusesource.leveldbjni" % "leveldbjni-all" % "1.6.1"
Expand Down
6 changes: 3 additions & 3 deletions examples/commands-nix/build.sbt
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
name := "commands-nix"

scalaVersion := "2.12.5"
scalaVersion := "2.12.6"

libraryDependencies ++= Seq(
"org.scalacheck" %% "scalacheck" % "1.13.5",
"net.java.dev.jna" % "jna" % "4.0.0"
"org.scalacheck" %% "scalacheck" % "1.14.0",
"net.java.dev.jna" % "jna" % "4.5.1"
)

javacOptions ++= Seq("-Xmx1024M")
8 changes: 4 additions & 4 deletions examples/commands-redis/build.sbt
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
name := "commands-redis"

scalaVersion := "2.12.5"
scalaVersion := "2.12.6"

libraryDependencies ++= Seq(
"org.scalacheck" %% "scalacheck" % "1.13.5",
"org.slf4j" % "slf4j-simple" % "1.7.7",
"net.debasishg" %% "redisclient" % "3.4"
"org.scalacheck" %% "scalacheck" % "1.14.0",
"org.slf4j" % "slf4j-simple" % "1.7.25",
"net.debasishg" %% "redisclient" % "3.6"
)
2 changes: 1 addition & 1 deletion examples/scalajs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ The following is what you need to add to your `build.sbt` file to make the
ScalaCheck test runner work:

```
libraryDependencies += "org.scalacheck" %%% "scalacheck" % "1.13.5" % "test"
libraryDependencies += "org.scalacheck" %%% "scalacheck" % "1.14.0" % "test"
```

## Limitations
Expand Down
4 changes: 2 additions & 2 deletions examples/scalajs/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ name := "ScalaCheck-scalajs-example"

version := "0.1-SNAPSHOT"

scalaVersion := "2.12.4"
scalaVersion := "2.12.6"

javacOptions += "-Xmx2048M"

libraryDependencies += "org.scalacheck" %%% "scalacheck" % "1.13.5" % "test"
libraryDependencies += "org.scalacheck" %%% "scalacheck" % "1.14.0" % "test"
2 changes: 1 addition & 1 deletion examples/scalajs/project/build.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
sbt.version=1.1.1
sbt.version=1.1.4
4 changes: 2 additions & 2 deletions examples/simple-sbt/build.sbt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name := "scalacheck-demo"

scalaVersion := "2.12.5"
scalaVersion := "2.12.6"

libraryDependencies += "org.scalacheck" %% "scalacheck" % "1.13.5" % "test"
libraryDependencies += "org.scalacheck" %% "scalacheck" % "1.14.0" % "test"

testOptions in Test += Tests.Argument(TestFrameworks.ScalaCheck, "-maxSize", "5", "-minSuccessfulTests", "33", "-workers", "1", "-verbosity", "1")
2 changes: 1 addition & 1 deletion project/build.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
sbt.version=1.1.1
sbt.version=1.1.4