Skip to content

Commit e065548

Browse files
committed
Release 5.7.0
1 parent 58e9093 commit e065548

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

CHANGELOG.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
## master (unreleased)
44

5+
## 5.7.0 (2018-04-29)
6+
57
### New features
68

79
* Add imenu support for multimethods.
@@ -17,6 +19,7 @@
1719
### Changes
1820

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

2124
### Bugs fixed
2225

@@ -28,7 +31,6 @@
2831
* [#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`.
2932
* [#423](https://github.com/clojure-emacs/clojure-mode/issues/423): Make `clojure-match-next-def` more robust against zero-arity def-like forms.
3033
* [#451](https://github.com/clojure-emacs/clojure-mode/issues/451): Make project root directory calculation customized by `clojure-project-root-function`.
31-
* Stop distinctive font-locking of java interop methods & constants: There is no semantic distinction between interop methods, constants and global vars in clojure.
3234
* Fix namespace font-locking: namespaces may also contain non alphanumeric chars.
3335

3436

clojure-mode.el

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
;; Artur Malabarba <[email protected]>
1111
;; URL: http://github.com/clojure-emacs/clojure-mode
1212
;; Keywords: languages clojure clojurescript lisp
13-
;; Version: 5.7.0-snapshot
13+
;; Version: 5.7.0
1414
;; Package-Requires: ((emacs "24.4"))
1515

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

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

8585
(defface clojure-keyword-face

0 commit comments

Comments
 (0)