Skip to content

Commit

Permalink
Release v3.1.0
Browse files Browse the repository at this point in the history
This release sees the addition of an import feature. The ability to return
an observable sequence from an action's map function. While you could do
this before, it would have been passed as an item and not mapped over.
Now the observable sequence will be subscribed to and its items are
passed to the actions observers.

This release also adds dispose methods on the entire actions object and the individual actions.

* [8495558](../../commit/8495558) Add disposability to actions
* [d6a3339](../../commit/d6a3339) Action map now accepts observables
  • Loading branch information
Berkeley Martinez authored and Berkeley Martinez committed Dec 18, 2015
1 parent 2b9f3a2 commit e7d583e
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 1 deletion.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
# December 17, 2015 v3.1.0

This release sees the addition of an import feature. The ability to return
an observable sequence from an action's map function. While you could do
this before, it would have been passed as an item and not mapped over.
Now the observable sequence will be subscribed to and its items are passed
to the actions observers.

This release also adds dispose methods on the entire actions object and the
individual actions.

* [8495558](../../commit/8495558) Add disposability to actions
* [d6a3339](../../commit/d6a3339) Action map now accepts observables

# October 8, 2015 v3.0.0
There are several breaking changes in this release.

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "thundercats",
"description": "RxJS Meets isomorphic Flux",
"version": "3.0.0",
"version": "3.1.0",
"homepage": "http://thundercats.js.org",
"keywords": [
"alwaysUseTwoSpaces",
Expand Down

0 comments on commit e7d583e

Please sign in to comment.