From d1eb2d200f2e01bab8dafc0a54dabc7bbff44af2 Mon Sep 17 00:00:00 2001 From: Radon Rosborough Date: Thu, 2 Apr 2020 08:53:03 -0600 Subject: Backport missing CHANGELOG entries --- CHANGELOG.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 99dd1da..323d130 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,15 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog]. ## Unreleased +### Enhancements +* There is now a maximum length for the dynamic programming algorithm, + controlled by `apheleia-max-alignment-size`. This prevents Emacs + from hanging due to Apheleia. under any circumstances ([#4]). + +### Formatters +* New: [Brittany](https://hackage.haskell.org/package/brittany) for + [Haskell](https://www.haskell.org/). + ### Bugs fixed * Previously, weirdness could happen if manually running Prettier via `M-x apheleia-format-buffer` on a buffer which was modified from @@ -11,6 +20,13 @@ The format is based on [Keep a Changelog]. uses the `file` keyword if the buffer is modified, since it will not produce correct results. This should not affect normal usage of Apheleia. +* Previously, the buffer could be erased when running Apheleia from a + buffer that had no backing file. This has been fixed, and Apheleia + can run correctly on buffers both with and without backing files + ([#9]). + +[#4]: https://github.com/raxod502/apheleia/issues/4 +[#9]: https://github.com/raxod502/apheleia/pull/9 ## 1.0 (released 2019-09-20) ### Added -- cgit v1.0 From c51a63a23e4218c18dc9b36f5efcf4e17c7e05c8 Mon Sep 17 00:00:00 2001 From: Radon Rosborough Date: Thu, 2 Apr 2020 08:54:06 -0600 Subject: Release version 1.1 --- CHANGELOG.md | 2 +- apheleia.el | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 323d130..0dcb498 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,7 +3,7 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog]. -## Unreleased +## 1.1 (released 2020-04-02) ### Enhancements * There is now a maximum length for the dynamic programming algorithm, controlled by `apheleia-max-alignment-size`. This prevents Emacs diff --git a/apheleia.el b/apheleia.el index 5740474..475afdf 100644 --- a/apheleia.el +++ b/apheleia.el @@ -7,7 +7,7 @@ ;; Homepage: https://github.com/raxod502/apheleia ;; Keywords: tools ;; Package-Requires: ((emacs "25.2")) -;; Version: 1.0 +;; Version: 1.1 ;;; Commentary: -- cgit v1.0