From 2b5e2a43b00d7ae2eebe1e81246f59ebde07d89a Mon Sep 17 00:00:00 2001 From: Peter Taoussanis Date: Fri, 7 Jul 2023 14:10:59 +0200 Subject: [PATCH] v1.10.0 (2023-07-07) --- CHANGELOG.md | 18 +++++++++++++++--- README.md | 6 +++--- project.clj | 2 +- 3 files changed, 19 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9c13526..d4a95fd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,18 @@ -> This project uses [Break Versioning](https://github.com/ptaoussanis/encore/blob/master/BREAK-VERSIONING.md) +This project uses [Break Versioning](https://github.com/ptaoussanis/encore/blob/master/BREAK-VERSIONING.md). -## v1.9.0 - 2023 Mar 15 +## `1.10.0` (2023-07-07) + +> 📦 [Available on Clojars](https://clojars.org/com.taoensso/truss/versions/1.10.0) + +This is a minor **feature release**, and should be a non-breaking upgrade. + +### New since `1.9.0` + +* 9855aa9 [new] Add `:column` and `:file` to `:loc` data for invariant violations +* 042eb78 [nop] Add tests for GraalVM compatibility + + +## `1.9.0` (2023-03-15) ```clojure [com.taoensso/truss "1.9.0"] @@ -9,7 +21,7 @@ > This is a **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. -### Since `v1.8.0` +### Since `1.8.0` - 4bbab6b [new] Add unevaluated arg `:form` info to invariant violations - 9a572b1 [new] Add `:instance?`, `:satisfies?` special predicate forms diff --git a/README.md b/README.md index de07ace..9300b34 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ **[CHANGELOG][]** | [API][] | current [Break Version][]: ```clojure -[com.taoensso/truss "1.9.0"] ; See CHANGELOG for details +[com.taoensso/truss "1.10.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.9.0"] ; or -deps.edn: com.taoensso/truss {:mvn/version "1.9.0"} +Leiningen: [com.taoensso/truss "1.10.0"] ; or +deps.edn: com.taoensso/truss {:mvn/version "1.10.0"} ``` And setup your namespace imports: diff --git a/project.clj b/project.clj index e85bab8..eb6b6f6 100644 --- a/project.clj +++ b/project.clj @@ -1,4 +1,4 @@ -(defproject com.taoensso/truss "1.9.0" +(defproject com.taoensso/truss "1.10.0" :author "Peter Taoussanis " :description "Assertions micro library for Clojure/Script" :url "https://github.com/ptaoussanis/truss"