diff --git a/CHANGELOG.md b/CHANGELOG.md index fee4ee4..9be4f97 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,13 @@ -> 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). + +## `2.5.1` (2023-07-18) + +> 📦 [Available on Clojars](https://clojars.org/com.taoensso/tufte/versions/2.5.1) + +Identical to `2.5.0`, but synchronizes Encore dependency with my recent library releases (Timbre, Tufte, Sente, Carmine, etc.) to prevent confusion caused by dependency conflicts. + +This is a safe update for users of `2.5.0`. + ## `2.5.0` (2023-07-13) diff --git a/README.md b/README.md index 6f93501..f7399d3 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ **[CHANGELOG][]** | [API][] | current [Break Version][]: ```clojure -[com.taoensso/tufte "2.5.0"] ; See CHANGELOG for details +[com.taoensso/tufte "2.5.1"] ; See CHANGELOG for details ``` > See [here][backers] if to help support my open-source work, thanks! - [Peter Taoussanis][Taoensso.com] @@ -61,8 +61,8 @@ Add the necessary dependency to your project: ```clojure -Leiningen: [com.taoensso/tufte "2.5.0"] ; or -deps.edn: com.taoensso/tufte {:mvn/version "2.5.0"} +Leiningen: [com.taoensso/tufte "2.5.1"] ; or +deps.edn: com.taoensso/tufte {:mvn/version "2.5.1"} ``` And setup your namespace imports: diff --git a/examples/clj/project.clj b/examples/clj/project.clj index 374bc3f..4e9d68c 100644 --- a/examples/clj/project.clj +++ b/examples/clj/project.clj @@ -1,4 +1,4 @@ -(defproject com.taoensso.examples/tufte "2.5.0" +(defproject com.taoensso.examples/tufte "2.5.1" :description "Tufte example web-app project" :url "https://github.com/ptaoussanis/tufte" @@ -15,6 +15,6 @@ [ring/ring-defaults "0.3.4"] [compojure "1.7.0"] [hiccup "1.0.5"] - [com.taoensso/tufte "2.5.0"]] + [com.taoensso/tufte "2.5.1"]] :main example.server) diff --git a/examples/cljs/deps.edn b/examples/cljs/deps.edn index 5bdbf73..7a58ebb 100644 --- a/examples/cljs/deps.edn +++ b/examples/cljs/deps.edn @@ -1,2 +1,2 @@ {:deps {org.clojure/clojurescript {:mvn/version "1.11.60"} - com.taoensso/tufte {:mvn/version "2.5.0"}}} + com.taoensso/tufte {:mvn/version "2.5.1"}}} diff --git a/project.clj b/project.clj index 50cab01..42e53cb 100644 --- a/project.clj +++ b/project.clj @@ -1,4 +1,4 @@ -(defproject com.taoensso/tufte "2.5.0" +(defproject com.taoensso/tufte "2.5.1" :author "Peter Taoussanis " :description "Simple profiling and performance monitoring for Clojure/Script" :url "https://github.com/ptaoussanis/tufte"