Skip to content

Commit 1f8847c

Browse files
committed
# 1.65.1029 (2022-04-11 / a60db27)
## Added ## Fixed - Fix issue with `gc-profiling` plugin when there's a syntax error. - Ensure that modifications that are done by deleting and recreating the file are picked up by using `--watch` with Beholder. ## Changed
1 parent a60db27 commit 1f8847c

File tree

4 files changed

+15
-15
lines changed

4 files changed

+15
-15
lines changed

.VERSION_PREFIX

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.64
1+
1.65

CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Unreleased
1+
# 1.65.1029 (2022-04-11 / a60db27)
22

33
## Added
44

@@ -859,4 +859,4 @@ namespace.
859859
- The configuration format has changed, you should now start with the `#kaocha
860860
{}` tagged reader literal in `tests.edn` to provide defaults. If you want more
861861
control then overwrite `tests.edn` with the output of `--print-config` and
862-
tweak.
862+
tweak.

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ Add Kaocha as a dependency, preferably under an alias.
102102
;; deps.edn
103103
{:deps { ,,, }
104104
:aliases
105-
{:test {:extra-deps {lambdaisland/kaocha {:mvn/version "1.64.1010"}}}}}
105+
{:test {:extra-deps {lambdaisland/kaocha {:mvn/version "1.65.1029"}}}}}
106106
```
107107

108108
Add a binstub called `bin/kaocha`
@@ -122,7 +122,7 @@ Add a profile and alias
122122
;; project.clj
123123
(defproject my-proj "0.1.0"
124124
:dependencies [,,,]
125-
:profiles {:kaocha {:dependencies [[lambdaisland/kaocha "1.64.1010"]]}}
125+
:profiles {:kaocha {:dependencies [[lambdaisland/kaocha "1.65.1029"]]}}
126126
:aliases {"kaocha" ["with-profile" "+kaocha" "run" "-m" "kaocha.runner"]})
127127
```
128128

@@ -166,7 +166,7 @@ options. If you nonetheless prefer `:exec-fn`/`-X`, you can set up `deps.edn`:
166166
;; deps.edn
167167
{:deps { ,,, }
168168
:aliases
169-
{:test {:extra-deps {lambdaisland/kaocha {:mvn/version "1.64.1010"}}
169+
{:test {:extra-deps {lambdaisland/kaocha {:mvn/version "1.65.1029"}}
170170
:exec-fn kaocha.runner/exec-fn
171171
:exec-args {}}}}
172172
```
@@ -187,10 +187,10 @@ of tests skipped. You could save that configuration with an additional alias:
187187
;; deps.edn
188188
{:deps { ,,, }
189189
:aliases
190-
{:test {:extra-deps {lambdaisland/kaocha {:mvn/version "1.64.1010"}}
190+
{:test {:extra-deps {lambdaisland/kaocha {:mvn/version "1.65.1029"}}
191191
:exec-fn kaocha.runner/exec-fn
192192
:exec-args {}}
193-
:watch-test {:extra-deps {lambdaisland/kaocha {:mvn/version "1.64.1010"}}
193+
:watch-test {:extra-deps {lambdaisland/kaocha {:mvn/version "1.65.1029"}}
194194
:exec-fn kaocha.runner/exec-fn
195195
:exec-args {:watch? true
196196
:skip-meta :slow

doc/02_installing.md

Lines changed: 7 additions & 7 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.64.1010"}}}' -m kaocha.runner --test-help
12+
clojure -Sdeps '{:deps {lambdaisland/kaocha {:mvn/version "1.65.1029"}}}' -m kaocha.runner --test-help
1313
```
1414

1515
Below are instructions on the recommended way to set things up for various build tools.
@@ -22,7 +22,7 @@ In `deps.edn`, create a `test` "alias" (profile) that loads the `lambdaisland/ka
2222
;; deps.edn
2323
{:deps { ,,, }
2424
:aliases
25-
{:test {:extra-deps {lambdaisland/kaocha {:mvn/version "1.64.1010"}}}}}
25+
{:test {:extra-deps {lambdaisland/kaocha {:mvn/version "1.65.1029"}}}}}
2626
```
2727

2828
Other dependencies that are only used for tests, like test framework or assertion
@@ -81,7 +81,7 @@ options. If you nonetheless prefer `:exec-fn`/`-X`, you can set up `deps.edn`:
8181
;; deps.edn
8282
{:deps { ,,, }
8383
:aliases
84-
{:test {:extra-deps {lambdaisland/kaocha {:mvn/version "1.64.1010"}}
84+
{:test {:extra-deps {lambdaisland/kaocha {:mvn/version "1.65.1029"}}
8585
:exec-fn kaocha.runner/exec-fn
8686
:exec-args {}}}}
8787
```
@@ -102,10 +102,10 @@ of tests skipped. You could save that configuration with an additional alias:
102102
;; deps.edn
103103
{:deps { ,,, }
104104
:aliases
105-
{:test {:extra-deps {lambdaisland/kaocha {:mvn/version "1.64.1010"}}
105+
{:test {:extra-deps {lambdaisland/kaocha {:mvn/version "1.65.1029"}}
106106
:exec-fn kaocha.runner/exec-fn
107107
:exec-args {}}
108-
:watch-test {:extra-deps {lambdaisland/kaocha {:mvn/version "1.64.1010"}}
108+
:watch-test {:extra-deps {lambdaisland/kaocha {:mvn/version "1.65.1029"}}
109109
:exec-fn kaocha.runner/exec-fn
110110
:exec-args {:watch? true
111111
:skip-meta :slow
@@ -122,7 +122,7 @@ Add Kaocha to your `:dev` profile, then add an alias that invokes `lein run -m k
122122
``` clojure
123123
(defproject my-proj "0.1.0"
124124
:dependencies [,,,]
125-
:profiles {:dev {:dependencies [,,, [lambdaisland/kaocha "1.64.1010"]]}}
125+
:profiles {:dev {:dependencies [,,, [lambdaisland/kaocha "1.65.1029"]]}}
126126
:aliases {"kaocha" ["run" "-m" "kaocha.runner"]})
127127
```
128128

@@ -155,7 +155,7 @@ alias that activates the profile and invokes `lein run -m kaocha.runner`:
155155
``` clojure
156156
(defproject my-proj "0.1.0"
157157
:dependencies [,,,]
158-
:profiles {:kaocha {:dependencies [[lambdaisland/kaocha "1.64.1010"]]}}
158+
:profiles {:kaocha {:dependencies [[lambdaisland/kaocha "1.65.1029"]]}}
159159
:aliases {"kaocha" ["with-profile" "+kaocha" "run" "-m" "kaocha.runner"]})
160160
```
161161

0 commit comments

Comments
 (0)