mirror of https://github.com/zkat/miette.git
docs: update changelog
This commit is contained in:
parent
5a474370dd
commit
7d67c7666d
22
CHANGELOG.md
22
CHANGELOG.md
|
|
@ -1,3 +1,25 @@
|
||||||
|
# `miette` Release Changelog
|
||||||
|
|
||||||
|
<a name="1.1.0"></a>
|
||||||
|
## 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))
|
||||||
|
|
||||||
<a name="1.0.1"></a>
|
<a name="1.0.1"></a>
|
||||||
## 1.0.1 (2021-08-23)
|
## 1.0.1 (2021-08-23)
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -6,6 +6,7 @@ header = """
|
||||||
# `miette` Release Changelog
|
# `miette` Release Changelog
|
||||||
|
|
||||||
"""
|
"""
|
||||||
|
|
||||||
# template for the changelog body
|
# template for the changelog body
|
||||||
# https://tera.netlify.app/docs/#introduction
|
# https://tera.netlify.app/docs/#introduction
|
||||||
body = """
|
body = """
|
||||||
|
|
@ -27,8 +28,10 @@ body = """
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
"""
|
"""
|
||||||
# remove the leading and trailing whitespaces from the template
|
|
||||||
|
# remove the leading and trailing whitespace from the template
|
||||||
trim = false
|
trim = false
|
||||||
|
|
||||||
# changelog footer
|
# changelog footer
|
||||||
# footer = """
|
# footer = """
|
||||||
# <!-- generated by git-cliff -->
|
# <!-- generated by git-cliff -->
|
||||||
|
|
@ -52,7 +55,7 @@ commit_parsers = [
|
||||||
{ body = ".*security", group = "Security"},
|
{ body = ".*security", group = "Security"},
|
||||||
]
|
]
|
||||||
# filter out the commits that are not matched by commit parsers
|
# filter out the commits that are not matched by commit parsers
|
||||||
filter_commits = true
|
filter_commits = false
|
||||||
# glob pattern for matching git tags
|
# glob pattern for matching git tags
|
||||||
tag_pattern = "[0-9]*"
|
tag_pattern = "[0-9]*"
|
||||||
# regex for skipping tags
|
# regex for skipping tags
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue