Skip to content

Commit

Permalink
v2.5.0 (2023-07-13)
Browse files Browse the repository at this point in the history
  • Loading branch information
ptaoussanis committed Jul 13, 2023
1 parent 7442835 commit 3f8b07f
Show file tree
Hide file tree
Showing 5 changed files with 30 additions and 10 deletions.
26 changes: 23 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,26 @@
> 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).
## v2.4.5 - 2022 Oct 27
## `2.5.0` (2023-07-13)

> 📦 [Available on Clojars](https://clojars.org/com.taoensso/tufte/versions/2.5.0)
This is intended as a **non-breaking feature release**, but it touches a fair bit of code so **please keep an eye out** for (and let me know about) any unexpected problems - thank you! 🙏

See **referenced commit messages** for details.

### Changes since `2.4.5`

* ebed6d0 [mod] Change `capture-time!` from a fn to a macro
* 7442835 [mod] Rename format columns: `:n-calls` -> `:n`, `:total` -> `:sum`

### New since `2.4.5`

* 2a38e1a [new] [#66] Track callsite locations of `p` ids
* 0a2484f [new] `defnp` and `fnp` now track cross-arity stats, add tests
* GraalVM compatibility is now tested during build


## `2.4.5` (2022-10-27)

```clojure
[com.taoensso/tufte "2.4.5"]
Expand All @@ -9,7 +29,7 @@
> This is a very minor maintenance release. It should be **non-breaking**.
> See [here](https://github.com/ptaoussanis/encore#recommended-steps-after-any-significant-dependency-update) for recommended steps when updating any Clojure/Script dependencies.
### Changes since `v2.3.0`
### Changes since `2.3.0`

* Update dependencies
* Some minor refactoring and performance improvements
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
**[CHANGELOG][]** | [API][] | current [Break Version][]:

```clojure
[com.taoensso/tufte "2.4.5"] ; See CHANGELOG for details
[com.taoensso/tufte "2.5.0"] ; See CHANGELOG for details
```

> See [here][backers] if to help support my open-source work, thanks! - [Peter Taoussanis][Taoensso.com]
Expand Down Expand Up @@ -61,8 +61,8 @@
Add the necessary dependency to your project:

```clojure
Leiningen: [com.taoensso/tufte "2.4.5"] ; or
deps.edn: com.taoensso/tufte {:mvn/version "2.4.5"}
Leiningen: [com.taoensso/tufte "2.5.0"] ; or
deps.edn: com.taoensso/tufte {:mvn/version "2.5.0"}
```

And setup your namespace imports:
Expand Down
4 changes: 2 additions & 2 deletions examples/clj/project.clj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(defproject com.taoensso.examples/tufte "2.4.5"
(defproject com.taoensso.examples/tufte "2.5.0"
:description "Tufte example web-app project"
:url "https://github.com/ptaoussanis/tufte"

Expand All @@ -15,6 +15,6 @@
[ring/ring-defaults "0.3.4"]
[compojure "1.7.0"]
[hiccup "1.0.5"]
[com.taoensso/tufte "2.4.5"]]
[com.taoensso/tufte "2.5.0"]]

:main example.server)
2 changes: 1 addition & 1 deletion examples/cljs/deps.edn
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
{:deps {org.clojure/clojurescript {:mvn/version "1.11.60"}
com.taoensso/tufte {:mvn/version "2.4.5"}}}
com.taoensso/tufte {:mvn/version "2.5.0"}}}
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/tufte "2.4.5"
(defproject com.taoensso/tufte "2.5.0"
:author "Peter Taoussanis <https://www.taoensso.com>"
:description "Simple profiling and performance monitoring for Clojure/Script"
:url "https://github.com/ptaoussanis/tufte"
Expand Down

0 comments on commit 3f8b07f

Please sign in to comment.