diff --git a/CHANGELOG.md b/CHANGELOG.md index 69a4fe8..cae0fa6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ # Changelog +## v1.3.0 (08.11.2023) + +### Enhancements + + - Support map comprehensions, `import_type` attribute, and `maybe` constructs + +**POTENTIAL RE-FORMATTING** + +All "raw" `maybe` and `else` atoms will be automatically re-quoted to make +the code compatible with the `maybe` feature, if enabled. +After the transformation the code will be compatible with the maybe feature +both enabled & disabled. + ## v1.2.0 (24.03.2023) ### Enhancements diff --git a/src/erlfmt.app.src b/src/erlfmt.app.src index 3b54ff0..61661d9 100644 --- a/src/erlfmt.app.src +++ b/src/erlfmt.app.src @@ -1,6 +1,6 @@ {application, erlfmt, [ {description, "erlfmt is an opinionated Erlang code formatter"}, - {vsn, "1.2.0"}, + {vsn, "1.3.0"}, {registered, []}, {applications, [kernel, stdlib]}, {env, []},