Skip to content

Commit

Permalink
1.0.0-alpha9 (#5)
Browse files Browse the repository at this point in the history
* Fix typo regression from alpha8

* Bump version
  • Loading branch information
lambdahands authored Jun 28, 2018
1 parent e15825d commit dcb1309
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ cases where correctness must be _"proven"_ (big air quotes).
## Installation

```
[opticlj "1.0.0-alpha8"]
[opticlj "1.0.0-alpha9"]
```

[See on Clojars](https://clojars.org/opticlj)
Expand Down
2 changes: 1 addition & 1 deletion project.clj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(defproject opticlj "1.0.0-alpha8"
(defproject opticlj "1.0.0-alpha9"
:description "A Clojure expectation/snapshot testing library, inspired by cram, ppx_expect, and jest"
:url "http://github.com/lambdahands/opticlj"
:license {:name "MIT"}
Expand Down
2 changes: 1 addition & 1 deletion src/opticlj/writer.cljc
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
(defn fmt-result [result]
(if (string? result)
(str/split (zprint-str result) #"\\n")
[(zprint-st result)]))
[(zprint-str result)]))

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

0 comments on commit dcb1309

Please sign in to comment.