Skip to content

Commit 9d2fa9d

Browse files
committed
prep for 2.1.188 another hook change
1 parent 1debcb9 commit 9d2fa9d

File tree

6 files changed

+11
-11
lines changed

6 files changed

+11
-11
lines changed

.clj-kondo/com.github.seancorfield/expectations/hooks/com/github/seancorfield/expectations.clj_kondo

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@
1717
rewritten
1818
(api/list-node
1919
(list*
20-
(api/token-node 'let)
21-
(api/vector-node (vector bindings (api/token-node 'nil)))
20+
(api/token-node 'fn)
21+
(api/vector-node (vector bindings))
2222
(map (fn [[e a]]
2323
(api/list-node
2424
(list

CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
Only accretive/fixative changes will be made from now on.
88

9-
* 2.1.187 -- 2023-10-22
9+
* 2.1.188 -- 2023-10-22
1010
* Address [#29](https://github.com/clojure-expectations/clojure-test/issues/29) by providing a "hook" for `more-of`.
1111
* Update `tools.build` to 0.9.6 (and get rid of `template/pom.xml` in favor of new `:pom-data` option to `b/write-pom`).
1212

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ A `clojure.test`-compatible version of the [classic Expectations testing library
44

55
## Where?
66

7-
[![Clojars Project](https://clojars.org/com.github.seancorfield/expectations/latest-version.svg)](https://clojars.org/com.github.seancorfield/expectations) [![cljdoc badge](https://cljdoc.org/badge/com.github.seancorfield/expectations?2.1.187)](https://cljdoc.org/d/com.github.seancorfield/expectations/CURRENT) [![Slack](https://img.shields.io/badge/slack-Expectations-red.svg?logo=slack)](https://clojurians.slack.com/app_redirect?channel=expectations)
7+
[![Clojars Project](https://clojars.org/com.github.seancorfield/expectations/latest-version.svg)](https://clojars.org/com.github.seancorfield/expectations) [![cljdoc badge](https://cljdoc.org/badge/com.github.seancorfield/expectations?2.1.188)](https://cljdoc.org/d/com.github.seancorfield/expectations/CURRENT) [![Slack](https://img.shields.io/badge/slack-Expectations-red.svg?logo=slack)](https://clojurians.slack.com/app_redirect?channel=expectations)
88

99
Try it out:
1010

doc/getting-started-cljs.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Your `deps.edn` should include this information:
2020

2121
```clojure
2222
{:aliases {:cljs-runner
23-
{:extra-deps {com.github.seancorfield/expectations {:mvn/version "2.1.187"},
23+
{:extra-deps {com.github.seancorfield/expectations {:mvn/version "2.1.188"},
2424
olical/cljs-test-runner {:mvn/version "3.8.0"},
2525
pjstadig/humane-test-output {:mvn/version "0.11.0"}},
2626
:extra-paths ["src" "test" "cljs-test-runner-out/gen"],

doc/getting-started.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,15 @@ You can add `expectations.clojure.test` to your project with either:
88

99
```clojure
1010
;; add this to :extra-deps under a :test alias:
11-
com.github.seancorfield/expectations {:mvn/version "2.1.187"}
11+
com.github.seancorfield/expectations {:mvn/version "2.1.188"}
1212
```
1313
for `deps.edn` or:
1414

1515
```clojure
1616
;; add this to :dev-dependencies (Leiningen)
17-
[com.github.seancorfield/expectations "2.1.187"]
17+
[com.github.seancorfield/expectations "2.1.188"]
1818
;; or add this to :dependencies (Boot)
19-
[com.github.seancorfield/expectations "2.1.187" :scope "test"]
19+
[com.github.seancorfield/expectations "2.1.188" :scope "test"]
2020
```
2121
for `project.clj` or `build.boot`.
2222

@@ -186,7 +186,7 @@ Of course, you can also update the `:test` alias to add those new options into `
186186
{:test
187187
{:extra-paths ["test"]
188188
:extra-deps
189-
{com.github.seancorfield/expectations {:mvn/version "2.1.187"}
189+
{com.github.seancorfield/expectations {:mvn/version "2.1.188"}
190190
;; assumes Clojure CLI 1.10.3.933 or later:
191191
io.github.cognitect-labs/test-runner
192192
{:git/tag "v0.5.0" :git/sha "48c3c67"}}

resources/clj-kondo.exports/com.github.seancorfield/expectations/hooks/com/github/seancorfield/expectations.clj_kondo

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@
1717
rewritten
1818
(api/list-node
1919
(list*
20-
(api/token-node 'let)
21-
(api/vector-node (vector bindings (api/token-node 'nil)))
20+
(api/token-node 'fn)
21+
(api/vector-node (vector bindings))
2222
(map (fn [[e a]]
2323
(api/list-node
2424
(list

0 commit comments

Comments
 (0)