Skip to content

Commit f1cd680

Browse files
committed
Release 5.21.0
1 parent 111cf5f commit f1cd680

2 files changed

Lines changed: 9 additions & 7 deletions

File tree

CHANGELOG.md

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,19 @@
22

33
## master (unreleased)
44

5-
### Bugs fixed
6-
7-
* [#658](https://github.com/clojure-emacs/clojure-mode/issues/658): Fix `clojure-mode-version` returning `nil`.
8-
* [#686](https://github.com/clojure-emacs/clojure-mode/issues/686): Fix `clojure-find-def` failing when comments appear between the `def` form and the symbol name.
9-
* [#637](https://github.com/clojure-emacs/clojure-mode/issues/637): Fix `clojure-find-def` failing on symbols containing special characters (e.g. `defn+`).
5+
## 5.21.0 (2026-02-18)
106

117
### New features
128

139
* [#650](https://github.com/clojure-emacs/clojure-mode/issues/650): Add `edn-mode`, a lightweight mode derived from `clojure-mode` with data-appropriate indentation for `.edn` files.
1410
* [#439](https://github.com/clojure-emacs/clojure-mode/issues/439): Add `interpreter-mode-alist` entries for `clojure`, `clj`, `planck`, `joker`, and `jank`, so that scripts with shebang lines are recognized automatically.
1511

12+
### Bugs fixed
13+
14+
* [#658](https://github.com/clojure-emacs/clojure-mode/issues/658): Fix `clojure-mode-version` returning `nil`.
15+
* [#686](https://github.com/clojure-emacs/clojure-mode/issues/686): Fix `clojure-find-def` failing when comments appear between the `def` form and the symbol name.
16+
* [#637](https://github.com/clojure-emacs/clojure-mode/issues/637): Fix `clojure-find-def` failing on symbols containing special characters (e.g. `defn+`).
17+
1618
### Changes
1719

1820
* [#482](https://github.com/clojure-emacs/clojure-mode/issues/482): Bind `clojure-align` to `C-c C-a` (following Emacs keybinding conventions). The old `C-c SPC` binding is deprecated and will be removed in a future release.

clojure-mode.el

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
;; Maintainer: Bozhidar Batsov <bozhidar@batsov.dev>
1313
;; URL: https://github.com/clojure-emacs/clojure-mode
1414
;; Keywords: languages clojure clojurescript lisp
15-
;; Version: 5.20.0
15+
;; Version: 5.21.0
1616
;; Package-Requires: ((emacs "27.1"))
1717

1818
;; This file is not part of GNU Emacs.
@@ -83,7 +83,7 @@
8383
:link '(url-link :tag "GitHub" "https://github.com/clojure-emacs/clojure-mode")
8484
:link '(emacs-commentary-link :tag "Commentary" "clojure-mode"))
8585

86-
(defconst clojure-mode-version "5.20.0"
86+
(defconst clojure-mode-version "5.21.0"
8787
"The current version of `clojure-mode'.")
8888

8989
(defface clojure-keyword-face

0 commit comments

Comments
 (0)