From 90741f7de6279669acd6e8a11f7acb605e06b8f7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Muska=C5=82a?= Date: Tue, 3 Sep 2024 11:50:13 +0100 Subject: [PATCH] Bump 1.5.0 --- CHANGELOG.md | 13 +++++++++++++ src/erlfmt.app.src | 2 +- 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 52bc83b..8db0e36 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ # Changelog +## v1.5.0 (03.09.2024) + +### Enhancements + + - Support OTP 27 sigils https://www.erlang.org/blog/highlights-otp-27/#sigils + - Support OTP 27 triple-quoted strings https://www.erlang.org/blog/highlights-otp-27/#triple-quoted-strings + - Support new documentation attributes + +### Fixes + + - Apply `exclude_files` to `files` absolute paths - mixing relative & absolute paths could lead to + unexpected behaviour before + ## v1.4.0 (28.08.2024) ### Enhancements diff --git a/src/erlfmt.app.src b/src/erlfmt.app.src index 6d3dd62..9607ac0 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.4.0"}, + {vsn, "1.5.0"}, {registered, []}, {applications, [kernel, stdlib]}, {env, []},