Skip to content

Commit 93159bf

Browse files
committed
Merge remote-tracking branch 'upstream/master' into 1.14.x
2 parents 91c6999 + 8391424 commit 93159bf

File tree

25 files changed

+72
-72
lines changed

25 files changed

+72
-72
lines changed

.gitignore

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -5,19 +5,11 @@
55
/build
66
/.settings
77
/dist
8-
/.Test.scala.swp
9-
target
108
/lib_managed
119
/src_managed
1210

13-
# /project/
14-
/project/boot
15-
/project/project/
16-
/project/target/
17-
/project/build/target
18-
19-
/examples/simple-sbt/project/
20-
/examples/simple-sbt/target/
11+
# sbt
12+
target/
2113

2214
# Intellij
2315
.idea

.travis.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ notifications:
1616
scala:
1717
- 2.10.7
1818
- 2.11.12
19-
- 2.12.9
20-
- 2.13.0
19+
- 2.12.10
20+
- 2.13.1
2121
jdk:
2222
- oraclejdk8
2323
- openjdk11
@@ -40,6 +40,7 @@ cache:
4040
directories:
4141
- $HOME/.ivy2/cache
4242
- $HOME/.sbt
43+
- $HOME/.cache/coursier
4344

4445
matrix:
4546
include:

CHANGELOG.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# ScalaCheck CHANGELOG
22

3-
## 1.14.1 (UNRELEASED)
3+
## 1.14.1 (2019-09-18)
44

55
* Binary compatible with 1.14.0 version of ScalaCheck.
66

RELEASE.markdown

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ features of QuickCheck can be found in ScalaCheck and vice versa, though.
1010

1111
ScalaCheck 1.14.1 is a minor update from ScalaCheck 1.14.0, and it is
1212
binary compatible. This means that if you
13-
are using any other framework in combination with ScalaCheck, like `ScalaTest`
14-
or `specs2` you can typically just bump the version of ScalaCheck in your
13+
are using any other framework in combination with ScalaCheck, like [ScalaTest](http://www.scalatest.org/)
14+
or [specs2](http://specs2.org/) you can typically just bump the version of ScalaCheck in your
1515
build definition or wait for those libraries to transitively do it for you in their next update. You still need to make sure that the combination of frameworks you
1616
are using was built and tested together with each other, otherwise you can run
1717
into errors related to binary compatibility that are possibly very hard to

build.sbt

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,15 @@ val scalaMajorVersion = SettingKey[Int]("scalaMajorVersion")
44

55
scalaVersionSettings
66

7-
lazy val versionNumber = "1.14.1"
7+
lazy val versionNumber = "1.14.2"
88

9-
lazy val isRelease = false
9+
val isRelease = SettingKey[Boolean]("isRelease")
1010

1111
lazy val travisCommit = Option(System.getenv().get("TRAVIS_COMMIT"))
1212

1313
lazy val scalaVersionSettings = Seq(
14-
scalaVersion := "2.13.0",
15-
crossScalaVersions := Seq("2.10.7", "2.11.12", "2.12.9", scalaVersion.value),
14+
scalaVersion := "2.13.1",
15+
crossScalaVersions := Seq("2.10.7", "2.11.12", "2.12.10", scalaVersion.value),
1616
scalaMajorVersion := {
1717
val v = scalaVersion.value
1818
CrossVersion.partialVersion(v).map(_._2.toInt).getOrElse {
@@ -28,14 +28,16 @@ lazy val sharedSettings = MimaSettings.settings ++ scalaVersionSettings ++ Seq(
2828

2929
name := "scalacheck",
3030

31+
isRelease := false,
32+
3133
version := {
3234
val suffix =
33-
if (isRelease) ""
35+
if (isRelease.value) ""
3436
else travisCommit.map("-" + _.take(7)).getOrElse("") + "-SNAPSHOT"
3537
versionNumber + suffix
3638
},
3739

38-
isSnapshot := !isRelease,
40+
isSnapshot := !isRelease.value,
3941

4042
organization := "org.scalacheck",
4143

@@ -112,7 +114,7 @@ lazy val sharedSettings = MimaSettings.settings ++ scalaVersionSettings ++ Seq(
112114
scalaJSVersion.startsWith("1.0.0-M")
113115
// TODO: re-enable MiMa for 2.14 once there is a final version
114116
if (scalaMajorVersion.value == 14 || isScalaJSMilestone) Set()
115-
else Set("org.scalacheck" %%% "scalacheck" % "1.14.0")
117+
else Set("org.scalacheck" %%% "scalacheck" % "1.14.1")
116118
},
117119

118120
publishTo := {
@@ -125,7 +127,7 @@ lazy val sharedSettings = MimaSettings.settings ++ scalaVersionSettings ++ Seq(
125127
publishMavenStyle := true,
126128

127129
// Travis should only publish snapshots
128-
publishArtifact := !(isRelease && travisCommit.isDefined),
130+
publishArtifact := !(isRelease.value && travisCommit.isDefined),
129131

130132
publishArtifact in Test := false,
131133

examples/commands-leveldb/build.sbt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
name := "commands-leveldb"
22

3-
scalaVersion := "2.12.9"
3+
scalaVersion := "2.12.10"
44

55
libraryDependencies ++= Seq(
6-
"org.scalacheck" %% "scalacheck" % "1.14.0",
6+
"org.scalacheck" %% "scalacheck" % "1.14.1",
77
"org.fusesource.leveldbjni" % "leveldbjni-all" % "1.8"
88
// "org.fusesource.leveldbjni" % "leveldbjni-all" % "1.7"
99
// "org.fusesource.leveldbjni" % "leveldbjni-all" % "1.6.1"
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
sbt.version=1.3.1

examples/commands-nix/build.sbt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
name := "commands-nix"
22

3-
scalaVersion := "2.12.9"
3+
scalaVersion := "2.12.10"
44

55
libraryDependencies ++= Seq(
6-
"org.scalacheck" %% "scalacheck" % "1.14.0",
6+
"org.scalacheck" %% "scalacheck" % "1.14.1",
77
"net.java.dev.jna" % "jna" % "4.5.1"
88
)
99

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
sbt.version=1.3.1

examples/commands-redis/build.sbt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
name := "commands-redis"
22

3-
scalaVersion := "2.12.9"
3+
scalaVersion := "2.12.10"
44

55
libraryDependencies ++= Seq(
6-
"org.scalacheck" %% "scalacheck" % "1.14.0",
6+
"org.scalacheck" %% "scalacheck" % "1.14.1",
77
"org.slf4j" % "slf4j-simple" % "1.7.25",
88
"net.debasishg" %% "redisclient" % "3.6"
99
)

0 commit comments

Comments
 (0)