summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG.md18
-rw-r--r--Cargo.toml2
2 files changed, 19 insertions, 1 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.
+
diff --git a/Cargo.toml b/Cargo.toml
index d002892..d04077f 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "filters"
-version = "0.1.1"
+version = "0.2.0"
authors = ["Matthias Beyer <mail@beyermatthias.de>",
"Marcel Müller <neikos@neikos.email>" ]