Skip to content

Commit 347f3b5

Browse files
committed
Prep for 1.2.0 release
1 parent 63632e2 commit 347f3b5

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Unreleased changes on **master**:
1+
# Version 1.2.0 -- 2019-12-09
22

33
* Improve failure reporting for `in`; allow it to be combined with `more` etc. #11
44
* Add support for mocking return values in `side-effects`.

doc/getting-started.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,15 @@ You can add `expectations/clojure-test` to your project with either:
88

99
```clojure
1010
;; add this to :extra-deps under a :test alias:
11-
{expectations/clojure-test {:mvn/version "1.1.2"}}
11+
{expectations/clojure-test {:mvn/version "1.2.0"}}
1212
```
1313
for `deps.edn` or:
1414

1515
```clojure
1616
;; add this to :dev-dependencies (Leiningen)
17-
[expectations/clojure-test "1.1.2"]
17+
[expectations/clojure-test "1.2.0"]
1818
;; or add this to :dependencies (Boot)
19-
[expectations/clojure-test "1.1.2" :scope "test"]
19+
[expectations/clojure-test "1.2.0" :scope "test"]
2020
```
2121
for `project.clj` or `build.boot`.
2222

@@ -187,7 +187,7 @@ Of course, you can also update the `:test` alias to add those new options into `
187187
{:test
188188
{:extra-paths ["test"]
189189
:extra-deps
190-
{expectations/clojure-test {:mvn/version "1.1.2"}
190+
{expectations/clojure-test {:mvn/version "1.2.0"}
191191
com.cognitect/test-runner
192192
{:git/url "https://github.com/cognitect-labs/test-runner.git"
193193
;; as at the time of writing -- check the test-runner repo for the latest:

pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<modelVersion>4.0.0</modelVersion>
44
<groupId>expectations</groupId>
55
<artifactId>clojure-test</artifactId>
6-
<version>1.1.2</version>
6+
<version>1.2.0</version>
77
<name>exp-clojure-test</name>
88
<description>A clojure.test-compatible version of the classic Expectations testing library.</description>
99
<url>https://github.com/clojure-expectations/clojure-test</url>

0 commit comments

Comments
 (0)