Skip to content

Commit ea94caa

Browse files
committed
Fix documentation index for 1.2.1 release
1 parent f224b18 commit ea94caa

File tree

3 files changed

+9
-5
lines changed

3 files changed

+9
-5
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# Version 1.2.1 -- 2019-12-09
2+
3+
* Fix cljdoc.org index (Collections was missing).
4+
15
# Version 1.2.0 -- 2019-12-09
26

37
* Improve failure reporting for `in`; allow it to be combined with `more` etc. #11

doc/getting-started.md

Lines changed: 4 additions & 4 deletions
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-
{expectations/clojure-test {:mvn/version "1.2.0"}}
11+
{expectations/clojure-test {:mvn/version "1.2.1"}}
1212
```
1313
for `deps.edn` or:
1414

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

@@ -187,7 +187,7 @@ Of course, you can also update the `:test` alias to add those new options into `
187187
{:test
188188
{:extra-paths ["test"]
189189
:extra-deps
190-
{expectations/clojure-test {:mvn/version "1.2.0"}
190+
{expectations/clojure-test {:mvn/version "1.2.1"}
191191
com.cognitect/test-runner
192192
{:git/url "https://github.com/cognitect-labs/test-runner.git"
193193
;; as at the time of writing -- check the test-runner repo for the latest:

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<modelVersion>4.0.0</modelVersion>
44
<groupId>expectations</groupId>
55
<artifactId>clojure-test</artifactId>
6-
<version>1.2.0</version>
6+
<version>1.2.1</version>
77
<name>exp-clojure-test</name>
88
<description>A clojure.test-compatible version of the classic Expectations testing library.</description>
99
<url>https://github.com/clojure-expectations/clojure-test</url>

0 commit comments

Comments
 (0)