-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
35 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
Episode 7 Changelog | ||
=================== | ||
|
||
This module adhears to semver, incrementing major version for any breaking change. | ||
|
||
v1.1 | ||
---- | ||
|
||
* `Episode7.run` now supports yielding to generators, in addition to promises | ||
* `Episode7.call` now supports a `this` argument for side-effect functions: | ||
|
||
Before (v1.0.x) | ||
```javascript | ||
function* awesomeGen() { | ||
yield Episode7.call(neatSideEffect) | ||
} | ||
``` | ||
|
||
Now (v1.1.0) | ||
```javascript | ||
function* awesomeGen() { | ||
yield Episode7.call([this, neatSideEffect]) | ||
} | ||
``` | ||
* Guardrail errors inform the developer if `yield` is used without `Episode7.call` | ||
|
||
|
||
v1.0 | ||
---- | ||
Initial release |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters