Skip to content

Commit

Permalink
prep for 2.0.143
Browse files Browse the repository at this point in the history
  • Loading branch information
seancorfield committed Dec 1, 2021
1 parent eda6145 commit b0bdbb2
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

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

* 2.0.next in progress
* 2.0.143 -- 2021-12-01
* Fix #23 by adding support for set-`in`-set expectations.
* Documentation updates.
* Build deps updates.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ A `clojure.test`-compatible version of the [classic Expectations testing library

## Where?

[![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)
[![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)

Try it out:

Expand Down
2 changes: 1 addition & 1 deletion doc/getting-started-cljs.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ Your `deps.edn` should include this information:

```clojure
{:aliases {:cljs-runner
{:extra-deps {com.github.seancorfield/expectations {:mvn/version "2.0.137"},
{:extra-deps {com.github.seancorfield/expectations {:mvn/version "2.0.143"},
olical/cljs-test-runner {:mvn/version "3.7.0"},
pjstadig/humane-test-output {:mvn/version "0.10.0"}},
:extra-paths ["src" "test" "cljs-test-runner-out/gen"],
Expand Down
8 changes: 4 additions & 4 deletions doc/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,15 @@ You can add `expectations.clojure.test` to your project with either:

```clojure
;; add this to :extra-deps under a :test alias:
com.github.seancorfield/expectations {:mvn/version "2.0.137"}
com.github.seancorfield/expectations {:mvn/version "2.0.143"}
```
for `deps.edn` or:

```clojure
;; add this to :dev-dependencies (Leiningen)
[com.github.seancorfield/expectations "2.0.137"]
[com.github.seancorfield/expectations "2.0.143"]
;; or add this to :dependencies (Boot)
[com.github.seancorfield/expectations "2.0.137" :scope "test"]
[com.github.seancorfield/expectations "2.0.143" :scope "test"]
```
for `project.clj` or `build.boot`.

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

0 comments on commit b0bdbb2

Please sign in to comment.