From 2c61e0571778cbf44181fcf711d7ba75d88cbbb0 Mon Sep 17 00:00:00 2001 From: Arne Brasseur Date: Mon, 25 Mar 2024 09:34:56 +0100 Subject: [PATCH] # 1.88.1376 (2024-03-25 / 8308e16) ## Fixed - Track all results when `:once` fixtures call `f` multiple times. (thanks [@NoahTheDuke](https://github.com/NoahTheDuke)) ## Changed - Version bumps --- .VERSION_PREFIX | 2 +- .github/workflows/add_to_project_board.yml | 3 +-- CHANGELOG.md | 2 +- README.md | 12 ++++++------ doc/02_installing.md | 16 ++++++++-------- 5 files changed, 17 insertions(+), 18 deletions(-) diff --git a/.VERSION_PREFIX b/.VERSION_PREFIX index dd0bf47b..48181851 100644 --- a/.VERSION_PREFIX +++ b/.VERSION_PREFIX @@ -1 +1 @@ -1.87 \ No newline at end of file +1.88 \ No newline at end of file diff --git a/.github/workflows/add_to_project_board.yml b/.github/workflows/add_to_project_board.yml index a664562a..1ed60e1a 100644 --- a/.github/workflows/add_to_project_board.yml +++ b/.github/workflows/add_to_project_board.yml @@ -1,7 +1,6 @@ name: Add new pr or issue to project board -on: -#on: [issues] +on: [issues, pull_requests] jobs: add-to-project: diff --git a/CHANGELOG.md b/CHANGELOG.md index 539b3621..a7409077 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -# Unreleased +# 1.88.1376 (2024-03-25 / 8308e16) ## Fixed diff --git a/README.md b/README.md index fc7cb722..aca65697 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.87.1366"}} + {:test {:extra-deps {lambdaisland/kaocha {:mvn/version "1.88.1376"}} :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.87.1366"]]}} + :profiles {:kaocha {:dependencies [[lambdaisland/kaocha "1.88.1376"]]}} :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.87.1366"}} + {:test {:extra-deps {lambdaisland/kaocha {:mvn/version "1.88.1376"}} :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.87.1366"}} + {:test {:extra-deps {lambdaisland/kaocha {:mvn/version "1.88.1376"}} :exec-fn kaocha.runner/exec-fn :exec-args {}} - :watch-test {:extra-deps {lambdaisland/kaocha {:mvn/version "1.87.1366"}} + :watch-test {:extra-deps {lambdaisland/kaocha {:mvn/version "1.88.1376"}} :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.87.1366"}}} + :deps {lambdaisland/kaocha {:mvn/version "1.88.1376"}}} ``` diff --git a/doc/02_installing.md b/doc/02_installing.md index c5ba8941..6b4fa714 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.87.1366"}}}' -m kaocha.runner --test-help +clojure -Sdeps '{:deps {lambdaisland/kaocha {:mvn/version "1.88.1376"}}}' -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.87.1366"}}}}} + :extra-deps {lambdaisland/kaocha {:mvn/version "1.88.1376"}}}}} ``` 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.87.1366"}} + {:test {:extra-deps {lambdaisland/kaocha {:mvn/version "1.88.1376"}} :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.87.1366"}} + {:test {:extra-deps {lambdaisland/kaocha {:mvn/version "1.88.1376"}} :exec-fn kaocha.runner/exec-fn :exec-args {}} - :watch-test {:extra-deps {lambdaisland/kaocha {:mvn/version "1.87.1366"}} + :watch-test {:extra-deps {lambdaisland/kaocha {:mvn/version "1.88.1376"}} :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.87.1366"]]}} + :profiles {:dev {:dependencies [,,, [lambdaisland/kaocha "1.88.1376"]]}} :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.87.1366"]]}} + :profiles {:kaocha {:dependencies [[lambdaisland/kaocha "1.88.1376"]]}} :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.87.1366"}}} + :deps {lambdaisland/kaocha {:mvn/version "1.88.1376"}}} ```