Skip to content

Commit 2545d8d

Browse files
committed
Update CHANGELOG
1 parent 7e7aae3 commit 2545d8d

File tree

2 files changed

+16
-19
lines changed

2 files changed

+16
-19
lines changed

CHANGELOG.markdown

Lines changed: 14 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -13,31 +13,28 @@
1313

1414
### Fixed
1515

16-
* Deadlock in test runner (https://github.com/rickynils/scalacheck/issues/290)
16+
* Deadlock in test runner (https://github.com/rickynils/scalacheck/issues/290).
17+
18+
* Distribution issues in `Gen.pick`.
19+
20+
* Infinity issues in `Gen.choose`.
21+
22+
* Issues with test reporting when running sbt in forked mode.
1723

1824
### Added
1925

20-
* Add an `initialSeed` test parameter that can be set to make property
26+
* An `initialSeed` test parameter that can be set to make property
2127
evaluation deterministic. If the same seed is used, the generated test cases
2228
will be the same. By default, this initial seed is randomized (like in
2329
previous versions of ScalaCheck).
2430

25-
* New generators and `Arbitrary` instances added for various types.
31+
* A `filterNot()` method on generators.
32+
33+
* New generator combinator: `atLeastOne()`.
34+
35+
* New generators and `Arbitrary` instances for various types.
2636

2737
* Support for filtering properties in the test runner
2838
(https://github.com/rickynils/scalacheck/pull/267).
2939

30-
Example usage with sbt:
31-
32-
```
33-
> testOnly -- -f .*choose.*
34-
[info] + Gen.choose-long: OK, passed 100 tests.
35-
[info] + Gen.choose-int: OK, passed 100 tests.
36-
[info] + Gen.choose finite duration values are within range: OK, passed 100 tests.
37-
[info] + Gen.choose-xmap: OK, passed 100 tests.
38-
[info] + Gen.choose-large-double: OK, passed 100 tests.
39-
[info] + Gen.choose-double: OK, passed 100 tests.
40-
[info] + Serializability.Gen[choose] serializability: OK, proved property.
41-
[info] Passed: Total 7, Failed 0, Errors 0, Passed 7
42-
[success] Total time: 1 s, completed Nov 18, 2016 2:10:57 PM
43-
```
40+
* Support for setting the report column width used by the test runner.

RELEASE.markdown

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ https://github.com/rickynils/scalacheck/tree/1.14.0/CHANGELOG.markdown
6767

6868
* Maven dependency
6969

70-
Add this to your pom.xml (example for Scala 2.11):
70+
Add this to your pom.xml (example for Scala 2.12):
7171

7272
<repositories>
7373
<repository>
@@ -84,6 +84,6 @@ https://github.com/rickynils/scalacheck/tree/1.14.0/CHANGELOG.markdown
8484

8585
<dependency>
8686
<groupId>org.scalacheck</groupId>
87-
<artifactId>scalacheck_2.11</artifactId>
87+
<artifactId>scalacheck_2.12</artifactId>
8888
<version>1.14.0</version>
8989
</dependency>

0 commit comments

Comments
 (0)