Skip to content

Commit

Permalink
Merge branch 'dev'
Browse files Browse the repository at this point in the history
  • Loading branch information
ptaoussanis committed Apr 19, 2013
2 parents 3e281d3 + 81fcda1 commit 3857b76
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Current [semantic](http://semver.org/) version:

```clojure
[com.taoensso/touchstone "0.15.0"]
[com.taoensso/touchstone "0.16.0"]
```

# Touchstone, a Clojure split-testing library
Expand All @@ -26,7 +26,7 @@ Touchstone is an attempt to bring **dead-simple, high-power split-testing** to a
Depend on Touchstone in your `project.clj`:

```clojure
[com.taoensso/touchstone "0.15.0"]
[com.taoensso/touchstone "0.16.0"]
```

and `require` the library:
Expand Down
4 changes: 2 additions & 2 deletions project.clj
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
(defproject com.taoensso/touchstone "0.15.0"
(defproject com.taoensso/touchstone "0.16.0"
:description "Clojure split-testing library"
:url "https://github.com/ptaoussanis/touchstone"
:license {:name "Eclipse Public License"}
:dependencies [[org.clojure/clojure "1.3.0"]
[org.clojure/tools.macro "0.1.1"]
[com.taoensso/carmine "1.6.0"]
[com.taoensso/carmine "1.7.0"]
[org.clojure/math.combinatorics "0.0.3"]]
:profiles {:1.3 {:dependencies [[org.clojure/clojure "1.3.0"]]}
:1.4 {:dependencies [[org.clojure/clojure "1.4.0"]]}
Expand Down
2 changes: 1 addition & 1 deletion src/taoensso/touchstone.clj
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
(car/with-conn pool# spec# ~@body)))

(def ^:private tkey "Prefixed Touchstone key"
(memoize (car/make-keyfn "touchstone")))
(memoize (partial car/kname "touchstone")))

(def ^:dynamic *mab-subject-id* nil)

Expand Down

0 comments on commit 3857b76

Please sign in to comment.