0.7.1
This commit is contained in:
parent
21edbd25c6
commit
3de578463f
2 changed files with 8 additions and 4 deletions
|
|
@ -1,6 +1,6 @@
|
||||||
# xforms
|
# xforms
|
||||||
|
|
||||||
More transducers and reducing functions for Clojure!
|
More transducers and reducing functions for Clojure(script)!
|
||||||
|
|
||||||
[](https://travis-ci.org/cgrand/xforms)
|
[](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:
|
Add this dependency to your project:
|
||||||
|
|
||||||
```clj
|
```clj
|
||||||
[net.cgrand/xforms "0.7.0"]
|
[net.cgrand/xforms "0.7.1"]
|
||||||
```
|
```
|
||||||
|
|
||||||
```clj
|
```clj
|
||||||
|
|
@ -209,6 +209,10 @@ Evaluation count : 24 in 6 samples of 4 calls.
|
||||||
|
|
||||||
## Changelog
|
## Changelog
|
||||||
|
|
||||||
|
### 0.7.1
|
||||||
|
|
||||||
|
* Works with Clojurescript (even self-hosted).
|
||||||
|
|
||||||
### 0.7.0
|
### 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))`
|
* Added 2-arg arity to `x/count` where it acts as a transducing context e.g. `(x/count (filter odd?) (range 10))`
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
(defproject net.cgrand/xforms "0.7.0"
|
(defproject net.cgrand/xforms "0.7.1"
|
||||||
:description "Extra transducers for Clojure"
|
:description "Extra transducers for Clojure"
|
||||||
#_#_:url "http://example.com/FIXME"
|
:url "https://github.com/cgrand/xforms"
|
||||||
:license {:name "Eclipse Public License"
|
:license {:name "Eclipse Public License"
|
||||||
:url "http://www.eclipse.org/legal/epl-v10.html"}
|
:url "http://www.eclipse.org/legal/epl-v10.html"}
|
||||||
:dependencies [[org.clojure/clojure "1.8.0"]
|
:dependencies [[org.clojure/clojure "1.8.0"]
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue