Skip to content

Commit

Permalink
Pushed v0.8.3.
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 778f0ad commit 6a16c84
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 2 deletions.
16 changes: 15 additions & 1 deletion README.md
@@ -1,3 +1,11 @@
# NOTICE

The Carmine Clojars group was recently changed. Please update your `project.clj` to use:

```clojure
[com.taoensso/carmine "{VERSION}"]
```

# Carmine, a Redis client for Clojure

[Redis](http://www.redis.io/) is *awesome* and it's getting [more awesome](http://www.redis.io/commands/eval) [every day](http://redis.io/topics/cluster-spec). It deserves a great Clojure client.
Expand Down Expand Up @@ -38,7 +46,13 @@ Carmine uses [Snappy](http://code.google.com/p/snappy-java/) which currently has

### Leiningen

Depend on `[com.taoensso/carmine "0.8.3-SNAPSHOT"]` in your `project.clj` and `require` the library:
Depend on Carmine in your `project.clj`:

```clojure
[com.taoensso/carmine "0.8.3"]
```

and `require` the library:

```clojure
(ns my-app (:require [carmine (core :as r)]))
Expand Down
2 changes: 1 addition & 1 deletion project.clj
@@ -1,4 +1,4 @@
(defproject com.taoensso/carmine "0.8.3-SNAPSHOT"
(defproject com.taoensso/carmine "0.8.3"
:description "Deliberately simple, high-performance Redis (2.0+) client for Clojure."
:url "https://github.com/ptaoussanis/carmine"
:license {:name "Eclipse Public License"}
Expand Down

0 comments on commit 6a16c84

Please sign in to comment.