Skip to content

Commit

Permalink
Pushed v0.5.1.
Browse files Browse the repository at this point in the history
* Added note to README about new Clojars group.

Signed-off-by: Peter Taoussanis <ptaoussanis@gmail.com>
  • Loading branch information
ptaoussanis committed Jun 29, 2012
1 parent f7c59cd commit 3b68744
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 2 deletions.
16 changes: 15 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -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*.
Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion project.clj
Original file line number Diff line number Diff line change
@@ -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"}
Expand Down

0 comments on commit 3b68744

Please sign in to comment.