From 61c40e079e2983cb64cae7d4be426aafaaec02f7 Mon Sep 17 00:00:00 2001 From: Peter Taoussanis Date: Wed, 26 Feb 2014 16:46:45 +0700 Subject: [PATCH] v3.1.1 --- CHANGELOG.md | 7 +++++++ README.md | 4 ++-- project.clj | 2 +- 3 files changed, 10 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3cf4493..1765e1b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +## v3.1.1 / 2014 Feb 26 + +### Fixes + + * Fix project.clj to prevent unnecessary downstream deps. + + ## v3.1.0 / 2014 Feb 23 ### New diff --git a/README.md b/README.md index 4b3fc00..c135afa 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ **[API docs][]** | **[CHANGELOG][]** | [other Clojure libs][] | [Twitter][] | [contact/contributing](#contact--contributing) | current ([semantic][]) version: ```clojure -[com.taoensso/timbre "3.1.0"] ; 3.x is a non-breaking upgrade - see CHANGELOG for details +[com.taoensso/timbre "3.1.1"] ; 3.x is a non-breaking upgrade - see CHANGELOG for details ``` Appender authors: please see [here](https://github.com/ptaoussanis/timbre/issues/41) about migrating Timbre 2.x appenders to 3.x's recommended style. @@ -30,7 +30,7 @@ Logging with Java can be maddeningly, unnecessarily hard. Particularly if all yo Add the necessary dependency to your [Leiningen][] `project.clj` and use the supplied ns-import helper: ```clojure -[com.taoensso/timbre "3.1.0"] ; project.clj +[com.taoensso/timbre "3.1.1"] ; project.clj (ns my-app (:require [taoensso.timbre :as timbre])) ; Your ns (timbre/refer-timbre) ; Provides useful Timbre aliases in this ns diff --git a/project.clj b/project.clj index c95ad3c..7de8f91 100644 --- a/project.clj +++ b/project.clj @@ -1,4 +1,4 @@ -(defproject com.taoensso/timbre "3.1.0" +(defproject com.taoensso/timbre "3.1.1" :author "Peter Taoussanis " :description "Clojure logging & profiling library" :url "https://github.com/ptaoussanis/timbre"