Skip to content

Commit 35cb3a8

Browse files
committed
prep for 2.1.181
1 parent 67a840d commit 35cb3a8

File tree

6 files changed

+11
-11
lines changed

6 files changed

+11
-11
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.1.181 -- 2023-09-29
1010
* Improved failure reporting: most failures now provide an additional message describing the failure as well as improving how the expected and actual values are displayed (primarily hiding `=?` and showing a more accurate/intuitive test form).
1111
* Update `deps.edn` to use `:main-args` (instead of `:main-opts`) for parameterized tasks in `build.clj` -- see [Running Tasks based on Aliases](https://clojure-doc.org/articles/cookbooks/cli_build_projects/)
1212
* Drop support for Java 8.

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.165)](https://cljdoc.org/d/com.github.seancorfield/expectations/CURRENT) [![Slack](https://img.shields.io/badge/slack-Expectations-red.svg?logo=slack)](https://clojurians.slack.com/app_redirect?channel=expectations)
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.1.181)](https://cljdoc.org/d/com.github.seancorfield/expectations/CURRENT) [![Slack](https://img.shields.io/badge/slack-Expectations-red.svg?logo=slack)](https://clojurians.slack.com/app_redirect?channel=expectations)
88

99
Try it out:
1010

build.clj

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
[deps-deploy.deps-deploy :as dd]))
2929

3030
(def lib 'com.github.seancorfield/expectations)
31-
(defn- the-version [patch] (format "2.0.%s" patch))
31+
(defn- the-version [patch] (format "2.1.%s" patch))
3232
(def version (the-version (b/git-count-revs nil)))
3333
(def snapshot (the-version "999-SNAPSHOT"))
3434
(def class-dir "target/classes")

doc/fixtures-focus.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ This run's _only_ tests marked as being `^:negative`.
161161
Leiningen's approach uses an additional layer in its `project.clj` file where you specify `:test-selectors` which are labels for predicates that run on the metadata of tests to determine whether to include them or not. Run `lein test help` for details. The equivalent of the above "humane" run would be:
162162

163163
```clojure
164-
:profiles {:humane {:dependencies [pjstadig/humane-test-output "0.10.0"]}}
164+
:profiles {:humane {:dependencies [pjstadig/humane-test-output "0.11.0"]}}
165165
:test-selectors {:humane (complement :negative)}
166166
```
167167

doc/getting-started-cljs.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@ 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.165"},
24-
olical/cljs-test-runner {:mvn/version "3.7.0"},
25-
pjstadig/humane-test-output {:mvn/version "0.10.0"}},
23+
{:extra-deps {com.github.seancorfield/expectations {:mvn/version "2.1.181"},
24+
olical/cljs-test-runner {:mvn/version "3.8.0"},
25+
pjstadig/humane-test-output {:mvn/version "0.11.0"}},
2626
:extra-paths ["src" "test" "cljs-test-runner-out/gen"],
2727
:main-opts ["-m" "cljs-test-runner.main"
2828
"--doo-opts" "dooopts.edn"

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

1515
```clojure
1616
;; add this to :dev-dependencies (Leiningen)
17-
[com.github.seancorfield/expectations "2.0.165"]
17+
[com.github.seancorfield/expectations "2.1.181"]
1818
;; or add this to :dependencies (Boot)
19-
[com.github.seancorfield/expectations "2.0.165" :scope "test"]
19+
[com.github.seancorfield/expectations "2.1.181" :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.165"}
189+
{com.github.seancorfield/expectations {:mvn/version "2.1.181"}
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)