Skip to content

Commit

Permalink
v2.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ptaoussanis committed Aug 12, 2013
1 parent f112779 commit a1947fb
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,9 @@
## v2.1.4 → v2.2,0
* Add `hmset*`, `hmget*` helpers.
* Add `:clojurize?` option to `info*` helper.
* Allow `hmget*`, `hgetall*`, `zinterstore*` to work with custom parsers.


## v2.1.0 → v2.1.4
* Fixed `lua` clashing var name regex bug (thanks to Alex Kehayias for report).

Expand Down
4 changes: 2 additions & 2 deletions README.md
@@ -1,7 +1,7 @@
**[API docs](http://ptaoussanis.github.io/carmine/)** | **[CHANGELOG](https://github.com/ptaoussanis/carmine/blob/master/CHANGELOG.md)** | [contact & contributing](#contact--contributing) | [other Clojure libs](https://www.taoensso.com/clojure-libraries) | [Twitter](https://twitter.com/#!/ptaoussanis) | current [semantic](http://semver.org/) version:

```clojure
[com.taoensso/carmine "2.1.4"] ; See CHANGELOG for changes since 1.x
[com.taoensso/carmine "2.2.0"] ; See CHANGELOG for changes since 1.x
```

v2 adds API improvements, integration with [Nippy v2](https://github.com/ptaoussanis/nippy) for pluggable compression+crypto, improved performance, additional message queue features, and [Tundra](#tundra) - an API for archiving cold data to an additional datastore. (A [Faraday DynamoDB](https://github.com/ptaoussanis/faraday) implementation is included).
Expand Down Expand Up @@ -41,7 +41,7 @@ Carmine is an attempt to **cohesively bring together the best bits from each cli
Add the necessary dependency to your [Leiningen](http://leiningen.org/) `project.clj` and `require` the library in your ns:

```clojure
[com.taoensso/carmine "2.1.4"] ; project.clj
[com.taoensso/carmine "2.2.0"] ; project.clj
(ns my-app (:require [taoensso.carmine :as car :refer (wcar)])) ; ns
```

Expand Down
2 changes: 1 addition & 1 deletion project.clj
@@ -1,4 +1,4 @@
(defproject com.taoensso/carmine "2.1.4"
(defproject com.taoensso/carmine "2.2.0"
:description "Clojure Redis client & message queue"
:url "https://github.com/ptaoussanis/carmine"
:license {:name "Eclipse Public License"
Expand Down

0 comments on commit a1947fb

Please sign in to comment.