Skip to content

Commit dcb1309

Browse files
authored
1.0.0-alpha9 (#5)
* Fix typo regression from alpha8 * Bump version
1 parent e15825d commit dcb1309

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ cases where correctness must be _"proven"_ (big air quotes).
4040
## Installation
4141

4242
```
43-
[opticlj "1.0.0-alpha8"]
43+
[opticlj "1.0.0-alpha9"]
4444
```
4545

4646
[See on Clojars](https://clojars.org/opticlj)

project.clj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
(defproject opticlj "1.0.0-alpha8"
1+
(defproject opticlj "1.0.0-alpha9"
22
:description "A Clojure expectation/snapshot testing library, inspired by cram, ppx_expect, and jest"
33
:url "http://github.com/lambdahands/opticlj"
44
:license {:name "MIT"}

src/opticlj/writer.cljc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
(defn fmt-result [result]
2222
(if (string? result)
2323
(str/split (zprint-str result) #"\\n")
24-
[(zprint-st result)]))
24+
[(zprint-str result)]))
2525

2626
(defn form-output-stream [kw form result]
2727
(str/join "\n" (concat [(str "(in-ns '" (namespace kw) ")") ""

0 commit comments

Comments
 (0)