From 2c529c4b217724c1d00e5553e42e40e9e6119c18 Mon Sep 17 00:00:00 2001 From: Alys Brooks Date: Mon, 12 Jun 2023 23:02:00 -0500 Subject: [PATCH] # 1.85.1342 (2023-06-12 / eebd294) ## Changed - Update deep-diff2 to `2.9.202` so Kaocha tests can benefit from faster hash-map diffing. --- .VERSION_PREFIX | 2 +- CHANGELOG.md | 4 ++-- README.md | 12 ++++++------ doc/02_installing.md | 16 ++++++++-------- 4 files changed, 17 insertions(+), 17 deletions(-) diff --git a/.VERSION_PREFIX b/.VERSION_PREFIX index 85cfbbbc..589a5ab8 100644 --- a/.VERSION_PREFIX +++ b/.VERSION_PREFIX @@ -1 +1 @@ -1.84 \ No newline at end of file +1.85 \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 8883c27b..714299a9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -# Unreleased +# 1.85.1342 (2023-06-12 / eebd294) ## Changed @@ -1060,4 +1060,4 @@ namespace. - The configuration format has changed, you should now start with the `#kaocha {}` tagged reader literal in `tests.edn` to provide defaults. If you want more control then overwrite `tests.edn` with the output of `--print-config` and - tweak. + tweak. \ No newline at end of file diff --git a/README.md b/README.md index 10e282a9..dd66238b 100644 --- a/README.md +++ b/README.md @@ -104,7 +104,7 @@ Add Kaocha as a dependency, preferably under an alias. ;; deps.edn {:deps { ,,, } :aliases - {:test {:extra-deps {lambdaisland/kaocha {:mvn/version "1.84.1335"}} + {:test {:extra-deps {lambdaisland/kaocha {:mvn/version "1.85.1342"}} :main-opts ["-m" "kaocha.runner"]}}} ``` @@ -137,7 +137,7 @@ Add a profile and alias ;; project.clj (defproject my-proj "0.1.0" :dependencies [,,,] - :profiles {:kaocha {:dependencies [[lambdaisland/kaocha "1.84.1335"]]}} + :profiles {:kaocha {:dependencies [[lambdaisland/kaocha "1.85.1342"]]}} :aliases {"kaocha" ["with-profile" "+kaocha" "run" "-m" "kaocha.runner"]}) ``` @@ -181,7 +181,7 @@ options. If you nonetheless prefer `:exec-fn`/`-X`, you can set up `deps.edn`: ;; deps.edn {:deps { ,,, } :aliases - {:test {:extra-deps {lambdaisland/kaocha {:mvn/version "1.84.1335"}} + {:test {:extra-deps {lambdaisland/kaocha {:mvn/version "1.85.1342"}} :exec-fn kaocha.runner/exec-fn :exec-args {}}}} ``` @@ -202,10 +202,10 @@ of tests skipped. You could save that configuration with an additional alias: ;; deps.edn {:deps { ,,, } :aliases - {:test {:extra-deps {lambdaisland/kaocha {:mvn/version "1.84.1335"}} + {:test {:extra-deps {lambdaisland/kaocha {:mvn/version "1.85.1342"}} :exec-fn kaocha.runner/exec-fn :exec-args {}} - :watch-test {:extra-deps {lambdaisland/kaocha {:mvn/version "1.84.1335"}} + :watch-test {:extra-deps {lambdaisland/kaocha {:mvn/version "1.85.1342"}} :exec-fn kaocha.runner/exec-fn :exec-args {:watch? true :skip-meta :slow @@ -227,7 +227,7 @@ You can create a `bb.edn` file: ```clojure {:paths ["src" "test"] - :deps {lambdaisland/kaocha {:mvn/version "1.84.1335"}}} + :deps {lambdaisland/kaocha {:mvn/version "1.85.1342"}}} ``` diff --git a/doc/02_installing.md b/doc/02_installing.md index d903f910..e10cd7c3 100644 --- a/doc/02_installing.md +++ b/doc/02_installing.md @@ -9,7 +9,7 @@ The main namespace for use at the command line is `kaocha.runner`, regardless of For example: ``` shell -clojure -Sdeps '{:deps {lambdaisland/kaocha {:mvn/version "1.84.1335"}}}' -m kaocha.runner --test-help +clojure -Sdeps '{:deps {lambdaisland/kaocha {:mvn/version "1.85.1342"}}}' -m kaocha.runner --test-help ``` Below are instructions on the recommended way to set things up for various build tools. @@ -23,7 +23,7 @@ In `deps.edn`, create a `test` "alias" (profile) that loads the `lambdaisland/ka {:deps { ,,, } :aliases {:test {:main-opts ["-m" "kaocha.runner"] - :extra-deps {lambdaisland/kaocha {:mvn/version "1.84.1335"}}}}} + :extra-deps {lambdaisland/kaocha {:mvn/version "1.85.1342"}}}}} ``` Other dependencies that are only used for tests, like test framework or assertion @@ -82,7 +82,7 @@ options. If you nonetheless prefer `:exec-fn`/`-X`, you can set up `deps.edn`: ;; deps.edn {:deps { ,,, } :aliases - {:test {:extra-deps {lambdaisland/kaocha {:mvn/version "1.84.1335"}} + {:test {:extra-deps {lambdaisland/kaocha {:mvn/version "1.85.1342"}} :exec-fn kaocha.runner/exec-fn :exec-args {}}}} ``` @@ -103,10 +103,10 @@ of tests skipped. You could save that configuration with an additional alias: ;; deps.edn {:deps { ,,, } :aliases - {:test {:extra-deps {lambdaisland/kaocha {:mvn/version "1.84.1335"}} + {:test {:extra-deps {lambdaisland/kaocha {:mvn/version "1.85.1342"}} :exec-fn kaocha.runner/exec-fn :exec-args {}} - :watch-test {:extra-deps {lambdaisland/kaocha {:mvn/version "1.84.1335"}} + :watch-test {:extra-deps {lambdaisland/kaocha {:mvn/version "1.85.1342"}} :exec-fn kaocha.runner/exec-fn :exec-args {:watch? true :skip-meta :slow @@ -123,7 +123,7 @@ Add Kaocha to your `:dev` profile, then add an alias that invokes `lein run -m k ``` clojure (defproject my-proj "0.1.0" :dependencies [,,,] - :profiles {:dev {:dependencies [,,, [lambdaisland/kaocha "1.84.1335"]]}} + :profiles {:dev {:dependencies [,,, [lambdaisland/kaocha "1.85.1342"]]}} :aliases {"kaocha" ["run" "-m" "kaocha.runner"]}) ``` @@ -156,7 +156,7 @@ alias that activates the profile and invokes `lein run -m kaocha.runner`: ``` clojure (defproject my-proj "0.1.0" :dependencies [,,,] - :profiles {:kaocha {:dependencies [[lambdaisland/kaocha "1.84.1335"]]}} + :profiles {:kaocha {:dependencies [[lambdaisland/kaocha "1.85.1342"]]}} :aliases {"kaocha" ["with-profile" "+kaocha" "run" "-m" "kaocha.runner"]}) ``` @@ -180,7 +180,7 @@ You can create a `bb.edn` file: ```clojure {:paths ["src" "test"] - :deps {lambdaisland/kaocha {:mvn/version "1.84.1335"}}} + :deps {lambdaisland/kaocha {:mvn/version "1.85.1342"}}} ```