From 9ff43756ce370e285047107a003ae0daa6745735 Mon Sep 17 00:00:00 2001 From: "Julian K. Arni" Date: Wed, 14 Sep 2016 09:59:07 -0300 Subject: [PATCH] Update CHANGELOG to YAML syntax. --- CHANGELOG.md | 10 ---------- CHANGELOG.yaml | 47 +++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 47 insertions(+), 10 deletions(-) delete mode 100644 CHANGELOG.md create mode 100644 CHANGELOG.yaml diff --git a/CHANGELOG.md b/CHANGELOG.md deleted file mode 100644 index 2a3bc39..0000000 --- a/CHANGELOG.md +++ /dev/null @@ -1,10 +0,0 @@ -# 0.0.1.1 - -- Exclude GHC 7.8 base (it wasn't properly supported anyhow). -- More generous bounds for other packages. - -# 0.0.1.0 - -- Better error messages. Error messages now contain failing predicate, failing -response and (except for response predicates), failing requests. -- Significant changes to RequestPredicate and ResponsePredicate types. diff --git a/CHANGELOG.yaml b/CHANGELOG.yaml new file mode 100644 index 0000000..272001e --- /dev/null +++ b/CHANGELOG.yaml @@ -0,0 +1,47 @@ +upcoming: + + changes: + + - description: Update CHANGELOG to YAML syntax. + pr: 16 + authors: jkarni + date: 2016-09-14 + + - description: Support new CaptureAll combinator + pr: 16 + authors: jkarni + date: 2016-09-14 + + - description: Support GHC 8 + pr: 16 + authors: jkarni + date: 2016-09-14 + + + +releases: + + - version: "0.0.1.1" + changes: + + - description: Exclude GHC 7.8 (by bumping base lower bound to 4.8) + pr: none + authors: jkarni + + - description: More generous bounds for other packages. + pr: none + authors: jkarni + + - version: "0.0.1.0" + changes: + + - description: Better error messages. + notes: > + Error messages now contain failing predicate, failing response and + (except for response predicates), failing requests. + pr: none + authors: jkarni + + - description: Signicant changes to RequestPredicate and ResponsePredicate types. + pr: none + authors: jkarni