Skip to content

Commit 966e0fe

Browse files
committed
# 1.78.1249 (2023-02-22 / 85de28d)
## Fixed * Fix issue with `--watch` and Neovim by bumping Beholder to `1.0.2`
1 parent 85de28d commit 966e0fe

File tree

5 files changed

+19
-19
lines changed

5 files changed

+19
-19
lines changed

.VERSION_PREFIX

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.77
1+
1.78

CHANGELOG.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Unreleased
1+
# 1.78.1249 (2023-02-22 / 85de28d)
22

33
## Fixed
44
* Fix issue with `--watch` and Neovim by bumping Beholder to `1.0.2`
@@ -996,4 +996,4 @@ namespace.
996996
- The configuration format has changed, you should now start with the `#kaocha
997997
{}` tagged reader literal in `tests.edn` to provide defaults. If you want more
998998
control then overwrite `tests.edn` with the output of `--print-config` and
999-
tweak.
999+
tweak.

README.md

+5-5
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.77.1236"}}
107+
{:test {:extra-deps {lambdaisland/kaocha {:mvn/version "1.78.1249"}}
108108
:main-opts ["-m" "kaocha.runner"]}}}
109109
```
110110

@@ -125,7 +125,7 @@ Add a profile and alias
125125
;; project.clj
126126
(defproject my-proj "0.1.0"
127127
:dependencies [,,,]
128-
:profiles {:kaocha {:dependencies [[lambdaisland/kaocha "1.77.1236"]]}}
128+
:profiles {:kaocha {:dependencies [[lambdaisland/kaocha "1.78.1249"]]}}
129129
:aliases {"kaocha" ["with-profile" "+kaocha" "run" "-m" "kaocha.runner"]})
130130
```
131131

@@ -169,7 +169,7 @@ options. If you nonetheless prefer `:exec-fn`/`-X`, you can set up `deps.edn`:
169169
;; deps.edn
170170
{:deps { ,,, }
171171
:aliases
172-
{:test {:extra-deps {lambdaisland/kaocha {:mvn/version "1.77.1236"}}
172+
{:test {:extra-deps {lambdaisland/kaocha {:mvn/version "1.78.1249"}}
173173
:exec-fn kaocha.runner/exec-fn
174174
:exec-args {}}}}
175175
```
@@ -190,10 +190,10 @@ of tests skipped. You could save that configuration with an additional alias:
190190
;; deps.edn
191191
{:deps { ,,, }
192192
:aliases
193-
{:test {:extra-deps {lambdaisland/kaocha {:mvn/version "1.77.1236"}}
193+
{:test {:extra-deps {lambdaisland/kaocha {:mvn/version "1.78.1249"}}
194194
:exec-fn kaocha.runner/exec-fn
195195
:exec-args {}}
196-
:watch-test {:extra-deps {lambdaisland/kaocha {:mvn/version "1.77.1236"}}
196+
:watch-test {:extra-deps {lambdaisland/kaocha {:mvn/version "1.78.1249"}}
197197
:exec-fn kaocha.runner/exec-fn
198198
:exec-args {:watch? true
199199
:skip-meta :slow

doc/02_installing.md

+7-7
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.77.1236"}}}' -m kaocha.runner --test-help
12+
clojure -Sdeps '{:deps {lambdaisland/kaocha {:mvn/version "1.78.1249"}}}' -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.77.1236"}}}}}
26+
:extra-deps {lambdaisland/kaocha {:mvn/version "1.78.1249"}}}}}
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.77.1236"}}
85+
{:test {:extra-deps {lambdaisland/kaocha {:mvn/version "1.78.1249"}}
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.77.1236"}}
106+
{:test {:extra-deps {lambdaisland/kaocha {:mvn/version "1.78.1249"}}
107107
:exec-fn kaocha.runner/exec-fn
108108
:exec-args {}}
109-
:watch-test {:extra-deps {lambdaisland/kaocha {:mvn/version "1.77.1236"}}
109+
:watch-test {:extra-deps {lambdaisland/kaocha {:mvn/version "1.78.1249"}}
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.77.1236"]]}}
126+
:profiles {:dev {:dependencies [,,, [lambdaisland/kaocha "1.78.1249"]]}}
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.77.1236"]]}}
159+
:profiles {:kaocha {:dependencies [[lambdaisland/kaocha "1.78.1249"]]}}
160160
:aliases {"kaocha" ["with-profile" "+kaocha" "run" "-m" "kaocha.runner"]})
161161
```
162162

doc/plugins/orchestra_plugin.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -30,12 +30,12 @@ You can enable spec instrumentation of your functions before running
3030
``` clojure
3131
(ns orchestra-test
3232
(:require [clojure.test :refer :all]
33-
[clojure.spec.alpha :as s]))
33+
[clojure.spec.alpha :as spec]))
3434

3535
(defn simple-fn []
3636
"x")
3737

38-
(s/fdef simple-fn :ret :simple/int)
38+
(spec/fdef simple-fn :ret :simple/int)
3939

4040
(deftest spec-fail-test
4141
(is (= "x" (simple-fn)) "Just testing simple-fn"))
@@ -46,9 +46,9 @@ You can enable spec instrumentation of your functions before running
4646

4747
``` clojure
4848
(ns my.specs
49-
(:require [clojure.spec.alpha :as s]))
49+
(:require [clojure.spec.alpha :as spec]))
5050

51-
(s/def :simple/int int?)
51+
(spec/def :simple/int int?)
5252
```
5353

5454

0 commit comments

Comments
 (0)