From c85d3fcc2bd2e356558161eeb07d8c2148da116c Mon Sep 17 00:00:00 2001 From: Kevin Amado Date: Tue, 22 Feb 2022 21:38:29 -0500 Subject: [PATCH] docs: update changelog --- CHANGELOG.md | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index b7f17aa..7489377 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -17,6 +17,27 @@ Types of changes - Security in case of vulnerabilities. --> +### Changed + +- Pattern matching lambdas now always have the comma after the argument: + + ```diff + - depthLimit + + depthLimit, + /* + If this option is true, an error will be thrown, if a certain given depth is exceeded + */ + - , + ``` + +- Pattern matching lambdas now support inline comments: + + ```diff + - revision ? "" + - # Specify revision for the options + + revision ? "", # Specify revision for the options + ``` + ## [0.4.0] - 2022-02-21 ### Added