From ef435cb1d368fb14bb9c2508a5141aef0ff06935 Mon Sep 17 00:00:00 2001 From: phil Date: Wed, 21 Oct 2015 09:39:46 -0400 Subject: [PATCH] Release v0.7.0 Change notes in the readme --- package.json | 2 +- readme.md | 14 +++++++++++--- 2 files changed, 12 insertions(+), 4 deletions(-) diff --git a/package.json b/package.json index a1ffe70..c46c364 100644 --- a/package.json +++ b/package.json @@ -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": { diff --git a/readme.md b/readme.md index 5b50623..744acc3 100644 --- a/readme.md +++ b/readme.md @@ -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. @@ -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,