diff options
| author | Radon Rosborough <radon.neon@gmail.com> | 2020-04-02 08:58:41 -0600 |
|---|---|---|
| committer | Radon Rosborough <radon.neon@gmail.com> | 2020-04-02 08:58:41 -0600 |
| commit | fe798e8824d29b05c6e0ecd75121acef3c19fe13 (patch) | |
| tree | 03c4ffd6e02fadfef655040eba353cf96736a240 | |
| parent | 1d8d42d0634b9b7119e9c50251a9de527db13102 (diff) | |
| parent | c51a63a23e4218c18dc9b36f5efcf4e17c7e05c8 (diff) | |
Merge branch release 1.1
| -rw-r--r-- | CHANGELOG.md | 24 | ||||
| -rw-r--r-- | apheleia.el | 2 |
2 files changed, 15 insertions, 11 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index d715b97..230416f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,20 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog]. ## Unreleased +### Bugs fixed +* Previously, there were some race conditions related to switching the + current buffer. In particular, if you switched the current buffer + right after saving, or save two buffers in quick succession, then it + was possible for one buffer to be overwritten or to not be + formatted. These problems have been fixed ([#8]). +* Previously, enabling `undo-tree-auto-save-history` caused Apheleia + to mark the buffer as modified after formatting. This has been + fixed ([#10]). + +[#8]: https://github.com/raxod502/apheleia/issues/8 +[#10]: https://github.com/raxod502/apheleia/issues/10 + +## 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 @@ -24,19 +38,9 @@ The format is based on [Keep a Changelog]. buffer that had no backing file. This has been fixed, and Apheleia can run correctly on buffers both with and without backing files ([#9]). -* Previously, there were some race conditions related to switching the - current buffer. In particular, if you switched the current buffer - right after saving, or save two buffers in quick succession, then it - was possible for one buffer to be overwritten or to not be - formatted. These problems have been fixed ([#8]). -* Previously, enabling `undo-tree-auto-save-history` caused Apheleia - to mark the buffer as modified after formatting. This has been - fixed ([#10]). [#4]: https://github.com/raxod502/apheleia/issues/4 -[#8]: https://github.com/raxod502/apheleia/issues/8 [#9]: https://github.com/raxod502/apheleia/pull/9 -[#10]: https://github.com/raxod502/apheleia/issues/10 ## 1.0 (released 2019-09-20) ### Added diff --git a/apheleia.el b/apheleia.el index b768fa4..0d080f8 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: |
