Codebase list test-check-clojure / 64c98a8
Update to 0.6.2 Reid Draper 9 years ago
4 changed file(s) with 13 addition(s) and 4 deletion(s). Raw diff Collapse all Expand all
00 # Changelog
11
2 * 0.6.2
3 * Fix regression where floating point numbers weren't allowed to describe
4 the number of tests in the defspec macro. Ex: (defspec foo 1e5 ...) now
5 works again.
6 * Allow `gen/shuffle` to work on anything that can be turned into a
7 sequence.
8 * Allow for testing to be cancelled inside the REPL with ctrl-c.
9 * Fix StackOverflow error that would be caused when generating vector with
10 more than about 10k elements.
211 * 0.6.1
312 * Fix bug introduced in 0.6.0: The `defspec` macro could only accept map or
413 numeric _literals_ as options, instead of a symbol.
1212 ### Leiningen
1313
1414 ```clojure
15 [org.clojure/test.check "0.6.1"]
15 [org.clojure/test.check "0.6.2"]
1616 ```
1717
1818 ### Maven
2121 <dependency>
2222 <groupId>org.clojure</groupId>
2323 <artifactId>test.check</artifactId>
24 <version>0.6.1</version>
24 <version>0.6.2</version>
2525 </dependency>
2626 ```
2727
55 * Update project.clj
66
77 In your `project.clj` replace `[reiddraper/simple-check "0.5.6"]` with
8 `[org.clojure/test.check "0.5.9"]` (note: your version numbers may be
8 `[org.clojure/test.check "0.6.2"]` (note: your version numbers may be
99 different).
1010
1111 * Update namespace declarations
0 (defproject org.clojure/test.check "0.6.2-SNAPSHOT"
0 (defproject org.clojure/test.check "0.6.2"
11 :description "A QuickCheck inspired property-based testing library."
22 :url "https://github.com/clojure/test.check"
33 :license {:name "Eclipse Public License"