Skip to content

Commit

Permalink
Release v0.7.0
Browse files Browse the repository at this point in the history
Change notes in the readme
  • Loading branch information
uniphil committed Oct 21, 2015
1 parent 7aa260f commit ef435cb
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 4 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "results",
"version": "0.6.0",
"version": "0.7.0",
"description": "Rust-inspired Result and Option tools for javascript",
"main": "index.js",
"scripts": {
Expand Down
14 changes: 11 additions & 3 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -597,12 +597,20 @@ The APIs for `Maybe`, and `Result` are _heavily_ influenced by
Changes
-------
### v0.8.0
_in progress_
#### Breaking
#### Other Changes
### v0.7.0
_in progress_
2015-10-21
### Breaking
#### Breaking
* Removed the `.map` family of methods from `Result` and `Maybe` -- use
`.andThen` (possibly chained with `.or` or `.orElse`) instead.
Expand All @@ -622,7 +630,7 @@ _in progress_
});
```
### Other Changes
#### Other Changes
* `OptionClass`! Check which Union a value is coming from with `instanceof`
* `Some` and `Ok` auto-promotion for the `.and` and `.or` families of methods,
Expand Down

0 comments on commit ef435cb

Please sign in to comment.