Skip to content

Commit

Permalink
Create CHANGELOG
Browse files Browse the repository at this point in the history
  • Loading branch information
mars committed Jul 5, 2016
1 parent 57b3577 commit abec3ba
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 0 deletions.
30 changes: 30 additions & 0 deletions CHANGELOG.markdown
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
5 changes: 5 additions & 0 deletions README.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,11 @@ Install
npm install episode-7 --save
```

Changes
-------

See: [CHANGELOG](CHANGELOG.markdown)

Usage
-----

Expand Down

0 comments on commit abec3ba

Please sign in to comment.