From c740d0e6fe895583d03e69b535b4213d76e262de Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lukas=20St=C3=BChrk?= Date: Wed, 17 Feb 2021 21:23:19 +0100 Subject: [PATCH 1/2] Fix the changelog to reflect the actual version history. --- Changelog.md | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/Changelog.md b/Changelog.md index eaf92e7..ad5ca54 100644 --- a/Changelog.md +++ b/Changelog.md @@ -14,6 +14,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [0.5.0] - 2021-01-14 +### Added + +- Added support for the visitor pattern, + by adding `protocol Visitor`/`protocol Visitable` & `enum VisitorContinueKind`. + ### Fixed - Fixed document parsing options. @@ -25,8 +30,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added -- Added support for the visitor pattern, - by adding `protocol Visitor`/`protocol Visitable` & `enum VisitorContinueKind`. - Added a changelog. #17 by @mattt. From 1e40d2d478aa56b40ba6503613f3b1dc5792c3c0 Mon Sep 17 00:00:00 2001 From: Mattt Date: Thu, 18 Feb 2021 06:02:20 -0800 Subject: [PATCH 2/2] Add PR reference to changelog entry for Visitor feature --- Changelog.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Changelog.md b/Changelog.md index ad5ca54..5d9b0a1 100644 --- a/Changelog.md +++ b/Changelog.md @@ -18,7 +18,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Added support for the visitor pattern, by adding `protocol Visitor`/`protocol Visitable` & `enum VisitorContinueKind`. - + #13 by @regexident. ### Fixed - Fixed document parsing options.