diff --git a/README.md b/README.md index 785be11..dbfba37 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # xforms -More transducers and reducing functions for Clojure! +More transducers and reducing functions for Clojure(script)! [![Build Status](https://travis-ci.org/cgrand/xforms.png?branch=master)](https://travis-ci.org/cgrand/xforms) @@ -21,7 +21,7 @@ Transducing contexts: `transjuxt` (for performing several transductions in a sin Add this dependency to your project: ```clj -[net.cgrand/xforms "0.7.0"] +[net.cgrand/xforms "0.7.1"] ``` ```clj @@ -209,6 +209,10 @@ Evaluation count : 24 in 6 samples of 4 calls. ## Changelog +### 0.7.1 + + * Works with Clojurescript (even self-hosted). + ### 0.7.0 * Added 2-arg arity to `x/count` where it acts as a transducing context e.g. `(x/count (filter odd?) (range 10))` diff --git a/project.clj b/project.clj index 322f06d..3c97c1c 100644 --- a/project.clj +++ b/project.clj @@ -1,6 +1,6 @@ -(defproject net.cgrand/xforms "0.7.0" +(defproject net.cgrand/xforms "0.7.1" :description "Extra transducers for Clojure" - #_#_:url "http://example.com/FIXME" + :url "https://github.com/cgrand/xforms" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.8.0"]