Skip to content

Commit

Permalink
v1.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ptaoussanis committed Aug 29, 2020
1 parent 2d99b11 commit 786c824
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 4 deletions.
24 changes: 24 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,29 @@
> This project uses [Break Versioning](https://github.com/ptaoussanis/encore/blob/master/BREAK-VERSIONING.md)
## v1.6.0 - 2020 Aug 29

```clojure
[com.taoensso/truss "1.6.0"]
```

> Minor feature release. _Should_ be non-breaking.
> See [here](https://github.com/ptaoussanis/encore#recommended-steps-after-any-significant-dependency-update) for a tip re: general recommended steps when updating any Clojure/Script dependencies.
Identical to `1.6.0-RC1`.

#### New since `1.5.0`

* [New] Add special cardinality predicates: `:n=`, `:n>=`, `:n<=`

#### Changes since `1.5.0`

* [#9] Return verbatim input/s on successful :in
* Micro optimization: avoid unnecessary vector creation for multi-x `have?`

#### Fixes since `1.5.0`

* `have?` should return true during elision

## v1.6.0-RC1 - 2019 Mar 22

```clojure
Expand Down
5 changes: 2 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,7 @@
**[CHANGELOG]** | [API] | current [Break Version]:

```clojure
[com.taoensso/truss "1.6.0-RC1"] ; See CHANGELOG for details
[com.taoensso/truss "1.5.0"] ; Stable
[com.taoensso/truss "1.6.0"] ; Stable, see CHANGELOG for details
```

> Please consider helping to [support my continued open-source Clojure/Script work]?
Expand Down Expand Up @@ -60,7 +59,7 @@ The best general recommendation I can make is to try actually experiment with th
Add the necessary dependency to your project:

```clojure
[com.taoensso/truss "1.5.0"]
[com.taoensso/truss "1.6.0"]
```

And setup your namespace imports:
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 com.taoensso/truss "1.6.0-RC1"
(defproject com.taoensso/truss "1.6.0"
:author "Peter Taoussanis <https://www.taoensso.com>"
:description "Assertions API for Clojure/Script"
:url "https://github.com/ptaoussanis/truss"
Expand Down

0 comments on commit 786c824

Please sign in to comment.