diff --git a/CHANGELOG.md b/CHANGELOG.md index bdd4842c..3dca6286 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,22 @@ -> This project uses [Break Versioning](https://github.com/ptaoussanis/encore/blob/master/BREAK-VERSIONING.md) as of **Aug 16, 2014**. +> This project uses [Break Versioning](https://github.com/ptaoussanis/encore/blob/master/BREAK-VERSIONING.md). + +## 6.2.0 (2023-06-30) + +> 📦 [Available on Clojars](https://clojars.org/com.taoensso/timbre/versions/6.2.0) + +This is a **maintenance release** that should be non-breaking. + +### Fixes since `6.2.0` + +* cd8f04c1 [fix] [#369] Temporarily switch back to old Pretty release +* 5c189454 [fix] [#370] Remove `println` output on init load (@helins) +* e34629e6 [fix] [#365] Provide protection against faulty error-fn + +### New since `6.2.0` + +* 0c5e07e7 [new] [#373] [#372] Cljs console appender: improve controls for raw logging +* a0bc5e04 [new] [#370] Add `:_init-config` map to `*config*` + ## v6.1.0 / 2023 Feb 27 diff --git a/README.md b/README.md index d185337e..54b12339 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ **[CHANGELOG][]** | [API][] | current [Break Version][]: ```clojure -[com.taoensso/timbre "6.1.0"] ; See CHANGELOG for details +[com.taoensso/timbre "6.2.0"] ; See CHANGELOG for details ``` > See [here][backers] if to help support my open-source work, thanks! - [Peter Taoussanis][Taoensso.com] @@ -34,8 +34,8 @@ Happy hacking! Add the necessary dependency to your project: ```clojure -Leiningen: [com.taoensso/timbre "6.1.0"] ; or -deps.edn: com.taoensso/timbre {:mvn/version "6.1.0"} +Leiningen: [com.taoensso/timbre "6.2.0"] ; or +deps.edn: com.taoensso/timbre {:mvn/version "6.2.0"} ``` And setup your namespace imports: @@ -268,4 +268,4 @@ Copyright © 2015-2023 [Peter Taoussanis][Taoensso.com]. [ClojureWerkz]: http://clojurewerkz.org/ [config API]: http://ptaoussanis.github.io/timbre/taoensso.timbre.html#var-*config* [default config]: http://ptaoussanis.github.io/timbre/taoensso.timbre.html#var-default-config -[community appenders]: https://github.com/ptaoussanis/timbre/tree/master/src/taoensso/timbre/appenders/community \ No newline at end of file +[community appenders]: https://github.com/ptaoussanis/timbre/tree/master/src/taoensso/timbre/appenders/community diff --git a/project.clj b/project.clj index 66459216..cdbaff2a 100644 --- a/project.clj +++ b/project.clj @@ -1,4 +1,4 @@ -(defproject com.taoensso/timbre "6.1.0" +(defproject com.taoensso/timbre "6.2.0" :author "Peter Taoussanis " :description "Pure Clojure/Script logging library" :url "https://github.com/ptaoussanis/timbre"