From 1debcb98994e7df2313810cf6d56199373130fd4 Mon Sep 17 00:00:00 2001 From: Sean Corfield Date: Sun, 22 Oct 2023 23:33:39 -0700 Subject: [PATCH] #29 take 2: more-of hook --- .../hooks/com/github/seancorfield/expectations.clj_kondo | 2 +- CHANGELOG.md | 2 +- README.md | 2 +- doc/getting-started-cljs.md | 2 +- doc/getting-started.md | 8 ++++---- .../hooks/com/github/seancorfield/expectations.clj_kondo | 2 +- 6 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.clj-kondo/com.github.seancorfield/expectations/hooks/com/github/seancorfield/expectations.clj_kondo b/.clj-kondo/com.github.seancorfield/expectations/hooks/com/github/seancorfield/expectations.clj_kondo index 35476be..0561d16 100644 --- a/.clj-kondo/com.github.seancorfield/expectations/hooks/com/github/seancorfield/expectations.clj_kondo +++ b/.clj-kondo/com.github.seancorfield/expectations/hooks/com/github/seancorfield/expectations.clj_kondo @@ -22,7 +22,7 @@ (map (fn [[e a]] (api/list-node (list - (api/token-node '=?) + (api/token-node 'expectations.clojure.test/expect) e a))) pairs)))] diff --git a/CHANGELOG.md b/CHANGELOG.md index 73f1e48..821f379 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,7 +6,7 @@ Only accretive/fixative changes will be made from now on. -* 2.1.186 -- 2023-10-22 +* 2.1.187 -- 2023-10-22 * Address [#29](https://github.com/clojure-expectations/clojure-test/issues/29) by providing a "hook" for `more-of`. * Update `tools.build` to 0.9.6 (and get rid of `template/pom.xml` in favor of new `:pom-data` option to `b/write-pom`). diff --git a/README.md b/README.md index 12bb26a..e8d0555 100644 --- a/README.md +++ b/README.md @@ -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.1.186)](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) +[![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.187)](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) Try it out: diff --git a/doc/getting-started-cljs.md b/doc/getting-started-cljs.md index b6f2132..fde5d16 100644 --- a/doc/getting-started-cljs.md +++ b/doc/getting-started-cljs.md @@ -20,7 +20,7 @@ Your `deps.edn` should include this information: ```clojure {:aliases {:cljs-runner - {:extra-deps {com.github.seancorfield/expectations {:mvn/version "2.1.186"}, + {:extra-deps {com.github.seancorfield/expectations {:mvn/version "2.1.187"}, olical/cljs-test-runner {:mvn/version "3.8.0"}, pjstadig/humane-test-output {:mvn/version "0.11.0"}}, :extra-paths ["src" "test" "cljs-test-runner-out/gen"], diff --git a/doc/getting-started.md b/doc/getting-started.md index 82cd3a7..9d13fed 100644 --- a/doc/getting-started.md +++ b/doc/getting-started.md @@ -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.1.186"} +com.github.seancorfield/expectations {:mvn/version "2.1.187"} ``` for `deps.edn` or: ```clojure ;; add this to :dev-dependencies (Leiningen) -[com.github.seancorfield/expectations "2.1.186"] +[com.github.seancorfield/expectations "2.1.187"] ;; or add this to :dependencies (Boot) -[com.github.seancorfield/expectations "2.1.186" :scope "test"] +[com.github.seancorfield/expectations "2.1.187" :scope "test"] ``` for `project.clj` or `build.boot`. @@ -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.1.186"} + {com.github.seancorfield/expectations {:mvn/version "2.1.187"} ;; assumes Clojure CLI 1.10.3.933 or later: io.github.cognitect-labs/test-runner {:git/tag "v0.5.0" :git/sha "48c3c67"}} diff --git a/resources/clj-kondo.exports/com.github.seancorfield/expectations/hooks/com/github/seancorfield/expectations.clj_kondo b/resources/clj-kondo.exports/com.github.seancorfield/expectations/hooks/com/github/seancorfield/expectations.clj_kondo index 35476be..0561d16 100644 --- a/resources/clj-kondo.exports/com.github.seancorfield/expectations/hooks/com/github/seancorfield/expectations.clj_kondo +++ b/resources/clj-kondo.exports/com.github.seancorfield/expectations/hooks/com/github/seancorfield/expectations.clj_kondo @@ -22,7 +22,7 @@ (map (fn [[e a]] (api/list-node (list - (api/token-node '=?) + (api/token-node 'expectations.clojure.test/expect) e a))) pairs)))]