From 2da099c5e96bb450543e6c981a26b235a12a5eda Mon Sep 17 00:00:00 2001 From: Sean Corfield Date: Sun, 22 Oct 2023 23:09:52 -0700 Subject: [PATCH] prep for 2.1.186 --- CHANGELOG.md | 2 +- README.md | 2 +- doc/getting-started-cljs.md | 2 +- doc/getting-started.md | 8 ++++---- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 00eeab8..73f1e48 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,7 +6,7 @@ Only accretive/fixative changes will be made from now on. -* 2.1.next in progress +* 2.1.186 -- 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 13442bb..12bb26a 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.182)](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.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) Try it out: diff --git a/doc/getting-started-cljs.md b/doc/getting-started-cljs.md index 291a073..b6f2132 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.182"}, + {:extra-deps {com.github.seancorfield/expectations {:mvn/version "2.1.186"}, 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 a55ce1a..82cd3a7 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.182"} +com.github.seancorfield/expectations {:mvn/version "2.1.186"} ``` for `deps.edn` or: ```clojure ;; add this to :dev-dependencies (Leiningen) -[com.github.seancorfield/expectations "2.1.182"] +[com.github.seancorfield/expectations "2.1.186"] ;; or add this to :dependencies (Boot) -[com.github.seancorfield/expectations "2.1.182" :scope "test"] +[com.github.seancorfield/expectations "2.1.186" :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.182"} + {com.github.seancorfield/expectations {:mvn/version "2.1.186"} ;; assumes Clojure CLI 1.10.3.933 or later: io.github.cognitect-labs/test-runner {:git/tag "v0.5.0" :git/sha "48c3c67"}}