summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias Beyer <mail@beyermatthias.de>2017-10-06 17:29:05 +0200
committerMatthias Beyer <mail@beyermatthias.de>2017-10-06 17:29:05 +0200
commit31186f52bc06c34e5037f11c7c85bc62ef5870a9 (patch)
treed8186b516db99c1d5ffc1e93d8606205ce607d71
parent94dd4b0f85e74f56356f6fe075d7f0db845b382b (diff)
Add changelog
-rw-r--r--CHANGELOG.md18
1 files changed, 18 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
new file mode 100644
index 0000000..663ec6c
--- /dev/null
+++ b/CHANGELOG.md
@@ -0,0 +1,18 @@
+# Changelog
+
+# Next
+
+Changes for the next release.
+
+# 0.2.0
+
+* The new "failable" filter API was introduced. Filters (more specifically
+ `FailableFilter`s can be used to return a `Result<bool, E>` from a filter,
+ if the filtering operation may fail due to some environmental reasons.
+ All chaining operators (`and`, `or`,...) are supported, as well as
+ transforming a `Filter` into a `FailableFilter`, as well as mapping error
+ types from one type into another.
+
+Versions prior to 0.2.0 are not documented in this file, have a look at the
+git version history.
+