From 31842299790a14759317590ba15b2e88ef670c4d Mon Sep 17 00:00:00 2001 From: Peter Taoussanis Date: Mon, 18 Jul 2022 13:13:05 +0200 Subject: [PATCH] v2.3.0-RC1 2022-07-18 --- CHANGELOG.md | 33 +++++++++++++++++++++++++++++++++ project.clj | 2 +- 2 files changed, 34 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0807def..605ed2e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,38 @@ > This project uses [Break Versioning](https://github.com/ptaoussanis/encore/blob/master/BREAK-VERSIONING.md) +## v2.3.0-RC1 - 2022 Jul 18 + +```clojure +[com.taoensso/tufte "2.3.0-RC1"] +``` + +> This is a major feature and fix release. Should be **non-breaking** for vast majority of folks. +> See [here](https://github.com/ptaoussanis/encore#recommended-steps-after-any-significant-dependency-update) for recommended steps when updating any Clojure/Script dependencies. + +### Behavioural changes since `v2.2.0` + +* Stats format: refactor, use default JVM locale thousands separator for call counts (Clj only) + +### Fixes since `v2.2.0` + +* `add-accumulating-handler!`: fix broken default val and examples +* [#64] Broken concurrent (local (local ...)) nested profiling (Clj only) (@awkay) +* Broken (dynamic (local ...)) nested profiling +* Broken nested profiling tests +* Correctly document which `profile/d` options are compile-time and runtime + +### New since `v2.2.0` + +* Throw on invalid compile-time `profile/d` options +* [#61] Improve docstrings re: async code + +### Other changes since `v2.2.0` + +* Refactor: rename `pdata-proxy` -> `pdata-local` +* Refactor `pdata-local` +* Update dependencies + + ## v2.2.0 - 2020 Sep 14 ```clojure diff --git a/project.clj b/project.clj index f98289c..ea5bce7 100644 --- a/project.clj +++ b/project.clj @@ -1,4 +1,4 @@ -(defproject com.taoensso/tufte "2.2.0" +(defproject com.taoensso/tufte "2.3.0-RC1" :author "Peter Taoussanis " :description "Simple profiling and performance monitoring for Clojure/Script" :url "https://github.com/ptaoussanis/tufte"