From 7d67c7666d6706426fe9bb88f29ad251a80d03c7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kat=20March=C3=A1n?= Date: Sun, 29 Aug 2021 12:47:16 -0700 Subject: [PATCH] docs: update changelog --- CHANGELOG.md | 22 ++++++++++++++++++++++ cliff.toml | 7 +++++-- 2 files changed, 27 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0a4fe7e..97d51aa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,25 @@ +# `miette` Release Changelog + + +## 1.1.0 (2021-08-29) + +This is a small release of patches entirely not my own! + +The exciting new feature is the ability to do `thiserror`-style +`#[diagnostic(transparent)]` when using the derive macro, which will defer +diagnostics to a Diagnostic referred to by the struct/enum! + +Big thanks to [@cormacrelf](https://github.com/cormacrelf) and +[@felipesere](https://github.com/felipesere) for your contributions! + +### Features + +* **derive:** Add `#[diagnostic(transparent,forward)]` (#36) ([53f5d6d1](https://github.com/zkat/miette/commit/53f5d6d1d62845b52e590fed5ce91a643b6e11f3)) + +### Bug Fixes + +* **reporter:** Only inc the line count if we haven't already done so with '\n' or '\r\n' (#37) ([5a474370](https://github.com/zkat/miette/commit/5a474370ddda92a3a92b6b84cd561ecaf4d6d858)) + ## 1.0.1 (2021-08-23) diff --git a/cliff.toml b/cliff.toml index f9fb37e..1148831 100644 --- a/cliff.toml +++ b/cliff.toml @@ -6,6 +6,7 @@ header = """ # `miette` Release Changelog """ + # template for the changelog body # https://tera.netlify.app/docs/#introduction body = """ @@ -27,8 +28,10 @@ body = """ {% endfor %} {% endfor %} """ -# remove the leading and trailing whitespaces from the template + +# remove the leading and trailing whitespace from the template trim = false + # changelog footer # footer = """ # @@ -52,7 +55,7 @@ commit_parsers = [ { body = ".*security", group = "Security"}, ] # filter out the commits that are not matched by commit parsers -filter_commits = true +filter_commits = false # glob pattern for matching git tags tag_pattern = "[0-9]*" # regex for skipping tags