From 31186f52bc06c34e5037f11c7c85bc62ef5870a9 Mon Sep 17 00:00:00 2001 From: Matthias Beyer Date: Fri, 6 Oct 2017 17:29:05 +0200 Subject: Add changelog --- CHANGELOG.md | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 CHANGELOG.md 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` 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. + -- cgit v1.2.3 From 6c6d0e3e938da33391b710b4e90f395b8c700c7c Mon Sep 17 00:00:00 2001 From: Matthias Beyer Date: Fri, 6 Oct 2017 17:29:14 +0200 Subject: Bump version: 0.1.1 -> 0.2.0 --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 ", "Marcel Müller " ] -- cgit v1.2.3