From 76af44fca7424fdb1eb9f7d1b6c72e40ea98901a Mon Sep 17 00:00:00 2001 From: Peter Taoussanis Date: Tue, 13 Dec 2022 12:51:07 +0100 Subject: [PATCH] v1.8.0 (2022-12-13) --- CHANGELOG.md | 15 +++++++++++++++ README.md | 6 +++--- project.clj | 2 +- 3 files changed, 19 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6c66051..b2f1904 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,20 @@ > This project uses [Break Versioning](https://github.com/ptaoussanis/encore/blob/master/BREAK-VERSIONING.md) +## v1.8.0 - 2022 Dec 13 + +```clojure +[com.taoensso/truss "1.8.0"] +``` + +> This is a **maintenance 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. + +### Since `v1.7.2` + +- e1a1fa6 [new] Document and provide workaround for CLJ-865 +- 2e3fa98 [fix] [#12] Fix issue with duplicate side effects when using within another macro + + ## v1.7.2 - 2022 Nov 20 ```clojure diff --git a/README.md b/README.md index c7d09ad..0d9a69b 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ **[CHANGELOG][]** | [API][] | current [Break Version][]: ```clojure -[com.taoensso/truss "1.7.2"] ; See CHANGELOG for details +[com.taoensso/truss "1.8.0"] ; See CHANGELOG for details ``` > See [here](https://taoensso.com/clojure/backers) if you're interested in helping support my open-source work, thanks! - Peter Taoussanis @@ -55,8 +55,8 @@ See [here](https://github.com/ptaoussanis/truss#motivation) for a discussion of Add the necessary dependency to your project: ```clojure -Leiningen: [com.taoensso/truss "1.7.2"] ; or -deps.edn: com.taoensso/truss {:mvn/version "1.7.2"} +Leiningen: [com.taoensso/truss "1.8.0"] ; or +deps.edn: com.taoensso/truss {:mvn/version "1.8.0"} ``` And setup your namespace imports: diff --git a/project.clj b/project.clj index 4dda75f..bd17e9e 100644 --- a/project.clj +++ b/project.clj @@ -1,4 +1,4 @@ -(defproject com.taoensso/truss "1.7.2" +(defproject com.taoensso/truss "1.8.0" :author "Peter Taoussanis " :description "Assertions API for Clojure/Script" :url "https://github.com/ptaoussanis/truss"