summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorbors[bot] <26634292+bors[bot]@users.noreply.github.com>2023-04-26 13:07:33 +0000
committerGitHub <noreply@github.com>2023-04-26 13:07:33 +0000
commit6082e5aee2a414283d2b8611da6c960f6dc16ef3 (patch)
tree9eca98d7bcf4fff9f1e8a506f9eab0ddba26e744
parent333bd1bb66cf04630925dc38b961bab645f99265 (diff)
parent269a3df30904a893e84b70a67c7a9fdf143fd789 (diff)
19: Prepare 0.5.0 r=matthiasbeyer a=matthiasbeyer This is the preparation for the 0.5.0 release of the resiter crate. Closes #44 Co-authored-by: Matthias Beyer <mail@beyermatthias.de> Co-authored-by: Joakim Ohlrogge <joakim.ohlrogge@gmail.com>
-rw-r--r--CHANGELOG.md11
-rw-r--r--Cargo.toml5
2 files changed, 14 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index df8de22..4a7ce4d 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,16 @@
# Changelog
+## 0.5.0
+
+* New extensons were added for filtering and mapping over things that can fail
+ * `try_map_ok` and `try_map_err`
+ * `try_filter_ok` and `try_filter_err`
+ * `try_filter_map_ok` and `try_filter_map_err`
+* More examples were added
+* Doc tests were added
+
+For a detailed changelog, please have a look at the git log.
+
## 0.4.0
* Add `map_inner_ok_or_else()` which can be used to transform:
diff --git a/Cargo.toml b/Cargo.toml
index 42b66a5..695442e 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,8 +1,9 @@
[package]
name = "resiter"
-version = "0.4.0"
+version = "0.5.0"
authors = ["Matthias Beyer <mail@beyermatthias.de>",
- "Dawid Ciężarkiewicz <dpc@dpc.pw>"]
+ "Dawid Ciężarkiewicz <dpc@dpc.pw>",
+ "Joakim Ohlrogge <joakim.ohlrogge@gmail.com>"]
description = "Helper crate for handling iterators over result"