summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias Beyer <mail@beyermatthias.de>2018-10-29 12:37:41 +0100
committerMatthias Beyer <mail@beyermatthias.de>2018-10-29 12:41:37 +0100
commitece8776398d9e6a43069c5fa1cfe1b4137c84109 (patch)
treefced4eb9490614706d33057e578bce851b467c71
parent0c07b9c4a69c2d35ab5e4d591b43547e1d52324f (diff)
v0.2.0
Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
-rw-r--r--CHANGELOG.md11
-rw-r--r--Cargo.toml2
2 files changed, 12 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index affe9d9..c155eed 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,16 @@
# Changelog
+## 0.2.0
+
+* 0c07b9c Removed the trait objects. This should result in more efficient code
+ as well as more "zero-cost-abstraction"-nessy.
+ It also removes static lifetimes.
+
+* 99192b1 Added `map_ok`, `map_err` and `while_ok`
+
+Thanks to [pchampin](https://github.com/pchampin) for these contributions!
+
+
## 0.1.0
* Initial release
diff --git a/Cargo.toml b/Cargo.toml
index 6176b96..1edce44 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "resiter"
-version = "0.1.0"
+version = "0.2.0"
authors = ["Matthias Beyer <mail@beyermatthias.de>"]
description = "Helper crate for handling iterators over result"