From 3b68744322e1e5dd5c1f8763afdb8b963d1410e4 Mon Sep 17 00:00:00 2001 From: Peter Taoussanis Date: Fri, 29 Jun 2012 14:13:28 +0700 Subject: [PATCH] Pushed v0.5.1. * Added note to README about new Clojars group. Signed-off-by: Peter Taoussanis --- README.md | 16 +++++++++++++++- project.clj | 2 +- 2 files changed, 16 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 37d1866..ef858ec 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,11 @@ +# NOTICE + +The Timbre Clojars group was recently changed. Please update your `project.clj` to use: + +```clojure +[com.taoensso/timbre "{VERSION}"] +``` + # Timbre, a (sane) logging library for Clojure Logging with Java can be maddeningly, unnecessarily hard. Particularly if all you want is something *simple that works out the box*. @@ -23,7 +31,13 @@ Timbre was built in a day after I finally lost my patience trying to configure L ### Leiningen -Depend on `[com.taoensso/timbre "0.5.1-SNAPSHOT"]` in your `project.clj` and `use` the library: +Depend on Timbre in your `project.clj`: + +```clojure +[com.taoensso/timbre "0.5.1"] +``` + +and `require` the library: ```clojure (ns my-app diff --git a/project.clj b/project.clj index a846dcf..5f68ac8 100644 --- a/project.clj +++ b/project.clj @@ -1,4 +1,4 @@ -(defproject com.taoensso/timbre "0.5.1-SNAPSHOT" +(defproject com.taoensso/timbre "0.5.1" :description "Simple, flexible, all-Clojure logging. No XML!" :url "https://github.com/ptaoussanis/timbre" :license {:name "Eclipse Public License"}