Skip to content

Commit

Permalink
mark beta12, so fix for #32 is formally released
Browse files Browse the repository at this point in the history
  • Loading branch information
ztellman committed Apr 3, 2015
1 parent 4b98862 commit 2b72c80
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -8,7 +8,7 @@ A detailed discussion of Manifold's rationale can be found [here](/docs/rational


```clj
[manifold "0.1.0-beta11"]
[manifold "0.1.0-beta12"]
```

### deferreds
Expand Down
2 changes: 1 addition & 1 deletion project.clj
@@ -1,4 +1,4 @@
(defproject manifold "0.1.0-SNAPSHOT"
(defproject manifold "0.1.0-beta12"
:description "a compatibility layer for event-driven abstractions"
:license {:name "MIT License"
:url "http://opensource.org/licenses/MIT"}
Expand Down
7 changes: 4 additions & 3 deletions src/manifold/stream.clj
Expand Up @@ -3,7 +3,7 @@
:doc "Methods for creating, transforming, and interacting with asynchronous streams of values."}
manifold.stream
(:refer-clojure
:exclude [transduce map filter mapcat reductions reduce partition partition-all concat partition-by])
:exclude [transduce map filter mapcat reductions reduce partition partition-all concat])
(:require
[clojure.core :as clj]
[manifold.deferred :as d]
Expand Down Expand Up @@ -677,10 +677,11 @@
(mapcat #(apply f %)))))

(defn lazily-partition-by
"Equivalent to Clojure's `partition-by`, but returns a stream of streams. This meanst that
"Equivalent to Clojure's `partition-by`, but returns a stream of streams. This means that
if a sub-stream is not completely consumed, the next sub-stream will never be emitted.
Use with caution."
Use with caution. If you're not totally sure you want a stream of streams, use
`(transform (partition-by f))` instead."
[f s]
(let [in (stream)
out (stream)]
Expand Down

0 comments on commit 2b72c80

Please sign in to comment.