Skip to content

Commit bd8438e

Browse files
committed
Prep for 2.0.156 release
1 parent 841651e commit bd8438e

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

CHANGELOG.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
# Change Log
22

3-
> NOTE: Clojars has introduced a [Verified Group Names policy](https://github.com/clojars/clojars-web/wiki/Verified-Group-Names) which means no new libraries can be pushed to the `expectations` group, and `doo` filters out JAR artifacts that begin `clojure-` for self-hosted ClojureScript environments (i.e., `planck`), so continuing to use `clojure-test` for the artifact name is not viable. Accordingly, the 2.x versions of this library are published as `com.github.seancorfield/expectations`.
3+
> NOTE: Since Clojars introduced a [Verified Group Names policy](https://github.com/clojars/clojars-web/wiki/Verified-Group-Names), no new libraries could be pushed to the `expectations` group, and `doo` filters out JAR artifacts that begin `clojure-` for self-hosted ClojureScript environments (i.e., `planck`), so continuing to use `clojure-test` for the artifact name is not viable. Accordingly, the 2.x versions of this library are published as `com.github.seancorfield/expectations`.
44
55
## Stable Releases
66

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

9-
* 2.0.next in progress
9+
* 2.0.156 -- 2022-01-19
1010
* Address [#26](https://github.com/clojure-expectations/clojure-test/issues/26) by adding an example combining `more->` and `more-of` around destructuring `ex-info` data.
1111
* Fix [#24](https://github.com/clojure-expectations/clojure-test/issues/24) by using a local (gensym) for the actual value in `more` and `more->` so it is only evaluated once.
1212
* Update `build-clj` to v0.6.7 and automate snapshot/release builds.

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.0.143)](https://cljdoc.org/d/com.github.seancorfield/expectations/CURRENT)
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.0.156)](https://cljdoc.org/d/com.github.seancorfield/expectations/CURRENT)
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.0.143"},
23+
{:extra-deps {com.github.seancorfield/expectations {:mvn/version "2.0.156"},
2424
olical/cljs-test-runner {:mvn/version "3.7.0"},
2525
pjstadig/humane-test-output {:mvn/version "0.10.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.0.143"}
11+
com.github.seancorfield/expectations {:mvn/version "2.0.156"}
1212
```
1313
for `deps.edn` or:
1414

1515
```clojure
1616
;; add this to :dev-dependencies (Leiningen)
17-
[com.github.seancorfield/expectations "2.0.143"]
17+
[com.github.seancorfield/expectations "2.0.156"]
1818
;; or add this to :dependencies (Boot)
19-
[com.github.seancorfield/expectations "2.0.143" :scope "test"]
19+
[com.github.seancorfield/expectations "2.0.156" :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.0.143"}
189+
{com.github.seancorfield/expectations {:mvn/version "2.0.156"}
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"}}

0 commit comments

Comments
 (0)