Skip to content
This repository has been archived by the owner on Nov 9, 2017. It is now read-only.

Commit

Permalink
update version
Browse files Browse the repository at this point in the history
  • Loading branch information
ztellman committed Aug 25, 2013
1 parent 0ae2fa6 commit 982aac8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ Lamina is for describing and analyzing streams of data. It provides a rich set

Add the following to the `:dependencies` section of your `project.clj` file:

[lamina "0.5.0-rc3"]
[lamina "0.5.0"]

## Rationale

Streams of events are represented by channels, which are used in [Aleph](https://github.com/ztellman/aleph) to model network communication over a variety of protocols. Much like Clojure's sequences, we can apply transforms to all events that pass through the channel:
Expand All @@ -17,7 +17,7 @@ Streams of events are represented by channels, which are used in [Aleph](https:/
nil
> (def ch (channel 1 2 3))
#'ch
> ch
> ch
<== [1 2 3 ...]
> (map* inc ch)
<== [2 3 4 ...]
Expand Down

0 comments on commit 982aac8

Please sign in to comment.