From a1947fb617966f972126909156dde2aaa88bd767 Mon Sep 17 00:00:00 2001 From: Peter Taoussanis Date: Mon, 12 Aug 2013 16:30:29 +0700 Subject: [PATCH] v2.2.0 --- CHANGELOG.md | 6 ++++++ README.md | 4 ++-- project.clj | 2 +- 3 files changed, 9 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 56cff904..b67379a3 100644 --- a/CHANGELOG.md +++ b/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). diff --git a/README.md b/README.md index 37fa62be..09316be1 100644 --- a/README.md +++ b/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). @@ -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 ``` diff --git a/project.clj b/project.clj index 440bc6d7..453668df 100644 --- a/project.clj +++ b/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"