Skip to content

Commit

Permalink
# 1.88.1376 (2024-03-25 / 8308e16)
Browse files Browse the repository at this point in the history
## Fixed

- Track all results when `:once` fixtures call `f` multiple times.
  (thanks [@NoahTheDuke](https://github.com/NoahTheDuke))

## Changed

- Version bumps
  • Loading branch information
plexus committed Mar 25, 2024
1 parent 8308e16 commit 2c61e05
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 18 deletions.
2 changes: 1 addition & 1 deletion .VERSION_PREFIX
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.87
1.88
3 changes: 1 addition & 2 deletions .github/workflows/add_to_project_board.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
name: Add new pr or issue to project board

on:
#on: [issues]
on: [issues, pull_requests]

jobs:
add-to-project:
Expand Down
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Unreleased
# 1.88.1376 (2024-03-25 / 8308e16)

## Fixed

Expand Down
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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"]}}}
```

Expand Down Expand Up @@ -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"]})
```

Expand Down Expand Up @@ -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 {}}}}
```
Expand All @@ -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
Expand All @@ -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"}}}

```

Expand Down
16 changes: 8 additions & 8 deletions doc/02_installing.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand All @@ -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
Expand Down Expand Up @@ -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 {}}}}
```
Expand All @@ -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
Expand All @@ -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"]})
```

Expand Down Expand Up @@ -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"]})
```

Expand All @@ -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"}}}

```

Expand Down

0 comments on commit 2c61e05

Please sign in to comment.