From a8ebec06d5212a8b1d12437ed11f7b8620dd246e Mon Sep 17 00:00:00 2001 From: Peter Taoussanis Date: Wed, 6 Nov 2013 20:46:57 +0700 Subject: [PATCH] v2.7.1 --- CHANGELOG.md | 2 +- README.md | 4 ++-- project.clj | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c050038..45f46c1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -## v2.6.3 → v2.7.0 +## v2.6.3 → v2.7.1 * Core: `getHostName` no longer runs on the main thread for better Android compatibility (AdamClements). * Profiling: added `defnp` macro. * Profiling: fix compile-time name creation: now runtime (aperiodic). diff --git a/README.md b/README.md index a8c456e..88fd8ef 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.7.0"] ; See CHANGELOG for breaking changes since 1.x +[com.taoensso/timbre "2.7.1"] ; See CHANGELOG for breaking changes since 1.x ``` # Timbre, a (sane) Clojure logging & profiling library @@ -27,7 +27,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.7.0"] ; project.clj +[com.taoensso/timbre "2.7.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 50d6156..cf40eb6 100644 --- a/project.clj +++ b/project.clj @@ -1,4 +1,4 @@ -(defproject com.taoensso/timbre "2.7.0" +(defproject com.taoensso/timbre "2.7.1" :description "Clojure logging & profiling library" :url "https://github.com/ptaoussanis/timbre" :license {:name "Eclipse Public License"