diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index c2d10ddd5..c1582073f 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -1,19 +1,20 @@ # Release notes +## Release 8.1.1 -# Release 8.1.0 +## Bug fixes -## New features and improvements +- Improve compliance with the official YAML test suite: #467, #469 and #475. -- Made CachedTypeInspector thread safe #386 - Previously, using an instance of `Serializer` or `Deserializer` was not thread-safe, - although the intention was for them to be thread safe. The only mutable state is - inside CachedTypeInspector and was not properly protected against concurrent mutation. +- Make YamlMemberAttribute.DefaultValuesHandling actually usable. Fixes #466. -## Other fixes +- Actually inherit YamlIgnore attributes: #481. -- Fix type conflicts when targeting frameworks without nullability attributes #460 +## New features + +- Add LowerCaseNamingConvention: #477. # Previous releases +- [8.1.0](releases/8.1.0.md) - [8.0.0](releases/8.0.0.md) - [7.0.0](releases/7.0.0.md) - [6.1.2](releases/6.1.2.md) diff --git a/releases/8.1.1.md b/releases/8.1.1.md new file mode 100644 index 000000000..e82b8e505 --- /dev/null +++ b/releases/8.1.1.md @@ -0,0 +1,13 @@ +# Release 8.1.1 + +## Bug fixes + +- Improve compliance with the official YAML test suite: #467, #469 and #475. + +- Make YamlMemberAttribute.DefaultValuesHandling actually usable. Fixes #466. + +- Actually inherit YamlIgnore attributes: #481. + +## New features + +- Add LowerCaseNamingConvention: #477.