Skip to content

Commit

Permalink
Move change history into changelog.md
Browse files Browse the repository at this point in the history
  • Loading branch information
earldouglas committed Dec 30, 2014
1 parent da34711 commit 24df3a9
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 39 deletions.
39 changes: 0 additions & 39 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -246,45 +246,6 @@ In lieu of a formal styleguide, take care to maintain the existing coding style.
Add unit tests for any new or changed functionality. Lint and test your code
using [Grunt](http://gruntjs.com/).

## Release History

### 0.5.0

* Encapsulate `cons()` and `nil` behind `list()`
* Function memoization via `memoize(fn)`
* Lazy function evaluation via `lazy(fn)`

### 0.4.2

* Documentation formatting for npmjs.com

### 0.4.1

* Documentation fixup

### 0.4.0

* Function composition, via `compose(f, g)`

### 0.3.1

* Documentation aggregation

### 0.3.0

* Linked lists, via `cons(head, tail)` and `nil`
* Function currying, via `curry(f)`
* Promises aggregation, via `collect(promises, callback)`

### 0.2.0

* Validation, via `valid(value)` and `invalid(errors)`
* Fix for `option(false)` returning `none()`

### 0.1.2

* Option, via `option(value)` and `option()`

## License
Copyright (c) 2014 James Earl Douglas
Licensed under the MIT license.
36 changes: 36 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
### 0.5.0

* Encapsulate `cons()` and `nil` behind `list()`
* Function memoization via `memoize(fn)`
* Lazy function evaluation via `lazy(fn)`

### 0.4.2

* Documentation formatting for npmjs.com

### 0.4.1

* Documentation fixup

### 0.4.0

* Function composition, via `compose(f, g)`

### 0.3.1

* Documentation aggregation

### 0.3.0

* Linked lists, via `cons(head, tail)` and `nil`
* Function currying, via `curry(f)`
* Promises aggregation, via `collect(promises, callback)`

### 0.2.0

* Validation, via `valid(value)` and `invalid(errors)`
* Fix for `option(false)` returning `none()`

### 0.1.2

* Option, via `option(value)` and `option()`

0 comments on commit 24df3a9

Please sign in to comment.