Skip to content

Commit 2c61e05

Browse files
committed
# 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
1 parent 8308e16 commit 2c61e05

File tree

5 files changed

+17
-18
lines changed

5 files changed

+17
-18
lines changed

.VERSION_PREFIX

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.87
1+
1.88

.github/workflows/add_to_project_board.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
name: Add new pr or issue to project board
22

3-
on:
4-
#on: [issues]
3+
on: [issues, pull_requests]
54

65
jobs:
76
add-to-project:

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Unreleased
1+
# 1.88.1376 (2024-03-25 / 8308e16)
22

33
## Fixed
44

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ Add Kaocha as a dependency, preferably under an alias.
104104
;; deps.edn
105105
{:deps { ,,, }
106106
:aliases
107-
{:test {:extra-deps {lambdaisland/kaocha {:mvn/version "1.87.1366"}}
107+
{:test {:extra-deps {lambdaisland/kaocha {:mvn/version "1.88.1376"}}
108108
:main-opts ["-m" "kaocha.runner"]}}}
109109
```
110110

@@ -137,7 +137,7 @@ Add a profile and alias
137137
;; project.clj
138138
(defproject my-proj "0.1.0"
139139
:dependencies [,,,]
140-
:profiles {:kaocha {:dependencies [[lambdaisland/kaocha "1.87.1366"]]}}
140+
:profiles {:kaocha {:dependencies [[lambdaisland/kaocha "1.88.1376"]]}}
141141
:aliases {"kaocha" ["with-profile" "+kaocha" "run" "-m" "kaocha.runner"]})
142142
```
143143

@@ -181,7 +181,7 @@ options. If you nonetheless prefer `:exec-fn`/`-X`, you can set up `deps.edn`:
181181
;; deps.edn
182182
{:deps { ,,, }
183183
:aliases
184-
{:test {:extra-deps {lambdaisland/kaocha {:mvn/version "1.87.1366"}}
184+
{:test {:extra-deps {lambdaisland/kaocha {:mvn/version "1.88.1376"}}
185185
:exec-fn kaocha.runner/exec-fn
186186
:exec-args {}}}}
187187
```
@@ -202,10 +202,10 @@ of tests skipped. You could save that configuration with an additional alias:
202202
;; deps.edn
203203
{:deps { ,,, }
204204
:aliases
205-
{:test {:extra-deps {lambdaisland/kaocha {:mvn/version "1.87.1366"}}
205+
{:test {:extra-deps {lambdaisland/kaocha {:mvn/version "1.88.1376"}}
206206
:exec-fn kaocha.runner/exec-fn
207207
:exec-args {}}
208-
:watch-test {:extra-deps {lambdaisland/kaocha {:mvn/version "1.87.1366"}}
208+
:watch-test {:extra-deps {lambdaisland/kaocha {:mvn/version "1.88.1376"}}
209209
:exec-fn kaocha.runner/exec-fn
210210
:exec-args {:watch? true
211211
:skip-meta :slow
@@ -227,7 +227,7 @@ You can create a `bb.edn` file:
227227

228228
```clojure
229229
{:paths ["src" "test"]
230-
:deps {lambdaisland/kaocha {:mvn/version "1.87.1366"}}}
230+
:deps {lambdaisland/kaocha {:mvn/version "1.88.1376"}}}
231231

232232
```
233233

doc/02_installing.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ The main namespace for use at the command line is `kaocha.runner`, regardless of
99
For example:
1010

1111
``` shell
12-
clojure -Sdeps '{:deps {lambdaisland/kaocha {:mvn/version "1.87.1366"}}}' -m kaocha.runner --test-help
12+
clojure -Sdeps '{:deps {lambdaisland/kaocha {:mvn/version "1.88.1376"}}}' -m kaocha.runner --test-help
1313
```
1414

1515
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
2323
{:deps { ,,, }
2424
:aliases
2525
{:test {:main-opts ["-m" "kaocha.runner"]
26-
:extra-deps {lambdaisland/kaocha {:mvn/version "1.87.1366"}}}}}
26+
:extra-deps {lambdaisland/kaocha {:mvn/version "1.88.1376"}}}}}
2727
```
2828

2929
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`:
8282
;; deps.edn
8383
{:deps { ,,, }
8484
:aliases
85-
{:test {:extra-deps {lambdaisland/kaocha {:mvn/version "1.87.1366"}}
85+
{:test {:extra-deps {lambdaisland/kaocha {:mvn/version "1.88.1376"}}
8686
:exec-fn kaocha.runner/exec-fn
8787
:exec-args {}}}}
8888
```
@@ -103,10 +103,10 @@ of tests skipped. You could save that configuration with an additional alias:
103103
;; deps.edn
104104
{:deps { ,,, }
105105
:aliases
106-
{:test {:extra-deps {lambdaisland/kaocha {:mvn/version "1.87.1366"}}
106+
{:test {:extra-deps {lambdaisland/kaocha {:mvn/version "1.88.1376"}}
107107
:exec-fn kaocha.runner/exec-fn
108108
:exec-args {}}
109-
:watch-test {:extra-deps {lambdaisland/kaocha {:mvn/version "1.87.1366"}}
109+
:watch-test {:extra-deps {lambdaisland/kaocha {:mvn/version "1.88.1376"}}
110110
:exec-fn kaocha.runner/exec-fn
111111
:exec-args {:watch? true
112112
:skip-meta :slow
@@ -123,7 +123,7 @@ Add Kaocha to your `:dev` profile, then add an alias that invokes `lein run -m k
123123
``` clojure
124124
(defproject my-proj "0.1.0"
125125
:dependencies [,,,]
126-
:profiles {:dev {:dependencies [,,, [lambdaisland/kaocha "1.87.1366"]]}}
126+
:profiles {:dev {:dependencies [,,, [lambdaisland/kaocha "1.88.1376"]]}}
127127
:aliases {"kaocha" ["run" "-m" "kaocha.runner"]})
128128
```
129129

@@ -156,7 +156,7 @@ alias that activates the profile and invokes `lein run -m kaocha.runner`:
156156
``` clojure
157157
(defproject my-proj "0.1.0"
158158
:dependencies [,,,]
159-
:profiles {:kaocha {:dependencies [[lambdaisland/kaocha "1.87.1366"]]}}
159+
:profiles {:kaocha {:dependencies [[lambdaisland/kaocha "1.88.1376"]]}}
160160
:aliases {"kaocha" ["with-profile" "+kaocha" "run" "-m" "kaocha.runner"]})
161161
```
162162

@@ -180,7 +180,7 @@ You can create a `bb.edn` file:
180180

181181
```clojure
182182
{:paths ["src" "test"]
183-
:deps {lambdaisland/kaocha {:mvn/version "1.87.1366"}}}
183+
:deps {lambdaisland/kaocha {:mvn/version "1.88.1376"}}}
184184

185185
```
186186

0 commit comments

Comments
 (0)