Skip to content

Commit

Permalink
v2.12.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ptaoussanis committed Sep 30, 2015
1 parent 22efb44 commit fb9331a
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
5 changes: 3 additions & 2 deletions CHANGELOG.md
@@ -1,19 +1,20 @@
> This project uses [Break Versioning](https://github.com/ptaoussanis/encore/blob/master/BREAK-VERSIONING.md) as of **Aug 16, 2014**.
## v2.12.0-beta1 / 2015 Aug 31
## v2.12.0 / 2015 Sep 30

> This is a significant **feature release** focused on new CAS utils
* **New**: conn spec URIs now support /db path [#113 @olek]
* **New**: `with-replies` now supports nesting
* **New**: added experimental CAS utils: `swap`, `hswap`
* **New**: updated commands.json (2015 Aug 5)
* **Perf**: bumped Nippy dependency to v2.10.0
* **Perf**: minor low-level Redis protocol optimizations
* **Fix**: Tundra S3 datastore wasn't closing input stream
* **Docs**: `wcar` docstring now has a warning re: laziness [#138]

```clojure
[com.taoensso/carmine "2.12.0-beta1"]
[com.taoensso/carmine "2.12.0"]
```


Expand Down
7 changes: 3 additions & 4 deletions README.md
@@ -1,8 +1,7 @@
**[API docs][]** | **[CHANGELOG][]** | [other Clojure libs][] | [Twitter][] | [contact/contrib](#contact--contributing) | current [Break Version][]:

```clojure
[com.taoensso/carmine "2.11.1"] ; Stable
[com.taoensso/carmine "2.12.0-beta1"] ; Dev, see CHANGELOG for details
[com.taoensso/carmine "2.12.0"] ; See CHANGELOG for details
```

# Carmine, a Clojure Redis client & message queue
Expand Down Expand Up @@ -41,7 +40,7 @@ Carmine is an attempt to **cohesively bring together the best bits from each cli
Add the necessary dependency to your [Leiningen][] `project.clj` and `require` the library in your ns:

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

Expand Down Expand Up @@ -370,7 +369,7 @@ Otherwise reach me (Peter Taoussanis) at [taoensso.com][] or on [Twitter][]. Che

## License

Copyright © 2012-2014 Peter Taoussanis. Distributed under the [Eclipse Public License][], the same as Clojure.
Copyright © 2012-2015 Peter Taoussanis. Distributed under the [Eclipse Public License][], the same as Clojure.


[API docs]: http://ptaoussanis.github.io/carmine/
Expand Down
2 changes: 1 addition & 1 deletion project.clj
@@ -1,4 +1,4 @@
(defproject com.taoensso/carmine "2.12.0-beta3"
(defproject com.taoensso/carmine "2.12.0"
:author "Peter Taoussanis <https://www.taoensso.com>"
:description "Clojure Redis client & message queue"
:url "https://github.com/ptaoussanis/carmine"
Expand Down
2 changes: 1 addition & 1 deletion src/taoensso/carmine.clj
@@ -1,5 +1,5 @@
(ns taoensso.carmine "Clojure Redis client & message queue."
{:author "Peter Taoussanis"}
{:author "Peter Taoussanis (@ptaoussanis)"}
(:refer-clojure :exclude [time get set key keys type sync sort eval])
(:require [clojure.string :as str]
[taoensso.encore :as encore]
Expand Down

0 comments on commit fb9331a

Please sign in to comment.