Skip to content

Commit

Permalink
Release 5.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
bbatsov committed Apr 29, 2018
1 parent 58e9093 commit e065548
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

## master (unreleased)

## 5.7.0 (2018-04-29)

### New features

* Add imenu support for multimethods.
Expand All @@ -17,6 +19,7 @@
### Changes

* Drop support for CLJX.
* Remove special font-locking of Java interop methods & constants: There is no semantic distinction between interop methods, constants and global vars in Clojure.

### Bugs fixed

Expand All @@ -28,7 +31,6 @@
* [#429](https://github.com/clojure-emacs/clojure-mode/issues/429): Fix a bug causing last occurrence of expression sometimes is not replaced when using `move-to-let`.
* [#423](https://github.com/clojure-emacs/clojure-mode/issues/423): Make `clojure-match-next-def` more robust against zero-arity def-like forms.
* [#451](https://github.com/clojure-emacs/clojure-mode/issues/451): Make project root directory calculation customized by `clojure-project-root-function`.
* Stop distinctive font-locking of java interop methods & constants: There is no semantic distinction between interop methods, constants and global vars in clojure.
* Fix namespace font-locking: namespaces may also contain non alphanumeric chars.


Expand Down
4 changes: 2 additions & 2 deletions clojure-mode.el
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
;; Artur Malabarba <[email protected]>
;; URL: http://github.com/clojure-emacs/clojure-mode
;; Keywords: languages clojure clojurescript lisp
;; Version: 5.7.0-snapshot
;; Version: 5.7.0
;; Package-Requires: ((emacs "24.4"))

;; This file is not part of GNU Emacs.
Expand Down Expand Up @@ -79,7 +79,7 @@
:link '(url-link :tag "Github" "https://github.com/clojure-emacs/clojure-mode")
:link '(emacs-commentary-link :tag "Commentary" "clojure-mode"))

(defconst clojure-mode-version "5.7.0-snapshot"
(defconst clojure-mode-version "5.7.0"
"The current version of `clojure-mode'.")

(defface clojure-keyword-face
Expand Down

0 comments on commit e065548

Please sign in to comment.