Pushed v0.5.1.

* Added note to README about new Clojars group.

Signed-off-by: Peter Taoussanis <ptaoussanis@gmail.com>
This commit is contained in:
Peter Taoussanis 2012-06-29 14:13:28 +07:00
parent f7c59cd377
commit 3b68744322
2 changed files with 16 additions and 2 deletions

View File

@ -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

View File

@ -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"}