Skip to content

Commit b0bdbb2

Browse files
committed
prep for 2.0.143
1 parent eda6145 commit b0bdbb2

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
Only accretive/fixative changes will be made from now on.
88

9-
* 2.0.next in progress
9+
* 2.0.143 -- 2021-12-01
1010
* Fix #23 by adding support for set-`in`-set expectations.
1111
* Documentation updates.
1212
* Build deps updates.

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ A `clojure.test`-compatible version of the [classic Expectations testing library
44

55
## Where?
66

7-
[![Clojars Project](https://clojars.org/com.github.seancorfield/expectations/latest-version.svg)](https://clojars.org/com.github.seancorfield/expectations) [![cljdoc badge](https://cljdoc.org/badge/com.github.seancorfield/expectations?2.0.137)](https://cljdoc.org/d/com.github.seancorfield/expectations/CURRENT)
7+
[![Clojars Project](https://clojars.org/com.github.seancorfield/expectations/latest-version.svg)](https://clojars.org/com.github.seancorfield/expectations) [![cljdoc badge](https://cljdoc.org/badge/com.github.seancorfield/expectations?2.0.143)](https://cljdoc.org/d/com.github.seancorfield/expectations/CURRENT)
88

99
Try it out:
1010

doc/getting-started-cljs.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Your `deps.edn` should include this information:
2020

2121
```clojure
2222
{:aliases {:cljs-runner
23-
{:extra-deps {com.github.seancorfield/expectations {:mvn/version "2.0.137"},
23+
{:extra-deps {com.github.seancorfield/expectations {:mvn/version "2.0.143"},
2424
olical/cljs-test-runner {:mvn/version "3.7.0"},
2525
pjstadig/humane-test-output {:mvn/version "0.10.0"}},
2626
:extra-paths ["src" "test" "cljs-test-runner-out/gen"],

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-
com.github.seancorfield/expectations {:mvn/version "2.0.137"}
11+
com.github.seancorfield/expectations {:mvn/version "2.0.143"}
1212
```
1313
for `deps.edn` or:
1414

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

@@ -186,7 +186,7 @@ Of course, you can also update the `:test` alias to add those new options into `
186186
{:test
187187
{:extra-paths ["test"]
188188
:extra-deps
189-
{com.github.seancorfield/expectations {:mvn/version "2.0.137"}
189+
{com.github.seancorfield/expectations {:mvn/version "2.0.143"}
190190
;; assumes Clojure CLI 1.10.3.933 or later:
191191
io.github.cognitect-labs/test-runner
192192
{:git/tag "v0.5.0" :git/sha "48c3c67"}}

0 commit comments

Comments
 (0)