From 37f4d35b0705644bcfebf272ffaea30683a57693 Mon Sep 17 00:00:00 2001 From: Peter Taoussanis Date: Mon, 22 Jul 2013 22:36:28 +0700 Subject: [PATCH] v2.4.1 --- CHANGELOG.md | 6 ++++-- README.md | 4 ++-- project.clj | 2 +- 3 files changed, 7 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index faac63b..1a29d66 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,7 @@ -## v2.3.4 → v2.4.0 +## v2.3.4 → v2.4.1 * Added `refer-timbre` for conveniently `require`ing standard timbre vars. + * Postal appender now uses throwable as subject when no other args given. + * `log-errors`, `log-and-rethrow-errors` now catch Throwable instead of Exception. ## v2.2.0 → v2.3.4 @@ -33,4 +35,4 @@ [Taoensso libs]: https://www.taoensso.com/clojure-libraries [Nippy GitHub]: https://github.com/ptaoussanis/nippy [Nippy CHANGELOG]: https://github.com/ptaoussanis/carmine/blob/master/CHANGELOG.md -[Nippy API docs]: http://ptaoussanis.github.io/nippy \ No newline at end of file +[Nippy API docs]: http://ptaoussanis.github.io/nippy diff --git a/README.md b/README.md index ea075cb..4229155 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ **[API docs](http://ptaoussanis.github.io/timbre/)** | **[CHANGELOG](https://github.com/ptaoussanis/timbre/blob/master/CHANGELOG.md)** | [contact & contributing](#contact--contributing) | [other Clojure libs](https://www.taoensso.com/clojure-libraries) | [Twitter](https://twitter.com/#!/ptaoussanis) | current [semantic](http://semver.org/) version: ```clojure -[com.taoensso/timbre "2.4.0"] ; See CHANGELOG for breaking changes since 1.x +[com.taoensso/timbre "2.4.1"] ; See CHANGELOG for breaking changes since 1.x ``` # Timbre, a (sane) Clojure logging & profiling library @@ -26,7 +26,7 @@ Logging with Java can be maddeningly, unnecessarily hard. Particularly if all yo Add the necessary dependency to your [Leiningen](http://leiningen.org/) `project.clj` and `require` the library in your ns: ```clojure -[com.taoensso/timbre "2.4.0"] ; project.clj +[com.taoensso/timbre "2.4.1"] ; project.clj (ns my-app (:require [taoensso.timbre :as timbre :refer (trace debug info warn error fatal spy with-log-level)])) ; ns ``` diff --git a/project.clj b/project.clj index fff6bc8..59e7a93 100644 --- a/project.clj +++ b/project.clj @@ -1,4 +1,4 @@ -(defproject com.taoensso/timbre "2.4.0" +(defproject com.taoensso/timbre "2.4.1" :description "Clojure logging & profiling library" :url "https://github.com/ptaoussanis/timbre" :license {:name "Eclipse Public License"