Skip to content

Commit 17fcc28

Browse files
committed
prep for 2.1.182
1 parent 35cb3a8 commit 17fcc28

File tree

7 files changed

+13
-11
lines changed

7 files changed

+13
-11
lines changed

.github/workflows/test-and-release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77

88
jobs:
99
build:
10-
runs-on: ubuntu-latest
10+
runs-on: ubuntu-20.04
1111
steps:
1212
- uses: actions/checkout@v4
1313
with:

.github/workflows/test-and-snapshot.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
runs-on: ubuntu-latest
4242
strategy:
4343
matrix:
44-
java: [ '11', '17', '20' ]
44+
java: [ '17', '20' ]
4545
steps:
4646
- uses: actions/checkout@v4
4747
- uses: actions/setup-java@v3

.github/workflows/test.yml

+4-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on: [pull_request]
44

55
jobs:
66
build:
7-
runs-on: ubuntu-latest
7+
runs-on: ubuntu-20.04
88
strategy:
99
matrix:
1010
java: [ '11', '17', '20' ]
@@ -14,6 +14,8 @@ jobs:
1414
with:
1515
distribution: 'adopt'
1616
java-version: ${{ matrix.java }}
17+
- name: Install Planck
18+
run: sudo add-apt-repository -y ppa:mfikes/planck && sudo apt-get update -y && sudo apt-get install -y planck
1719
- name: Clojure CLI
1820
uses: DeLaGuardo/setup-clojure@master
1921
with:
@@ -28,4 +30,4 @@ jobs:
2830
~/.cpcache
2931
key: ${{ runner.os }}-${{ hashFiles('**/deps.edn') }}
3032
- name: Run Tests
31-
run: clojure -T:build ci
33+
run: clojure -T:build ci :cljs true

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.181 -- 2023-09-29
9+
* 2.1.182 -- 2023-09-29
1010
* Improved failure reporting: most failures now provide an additional message describing the failure as well as improving how the expected and actual values are displayed (primarily hiding `=?` and showing a more accurate/intuitive test form).
1111
* Update `deps.edn` to use `:main-args` (instead of `:main-opts`) for parameterized tasks in `build.clj` -- see [Running Tasks based on Aliases](https://clojure-doc.org/articles/cookbooks/cli_build_projects/)
1212
* Drop support for Java 8.

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.181)](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.182)](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.181"},
23+
{:extra-deps {com.github.seancorfield/expectations {:mvn/version "2.1.182"},
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.181"}
11+
com.github.seancorfield/expectations {:mvn/version "2.1.182"}
1212
```
1313
for `deps.edn` or:
1414

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