Skip to content
  • Sponsor clojure-emacs/clojure-mode

  • Notifications You must be signed in to change notification settings
  • Fork 247

Commit 651b2b2

Browse files
committedOct 30, 2015
Release 5.0.0
1 parent a18c375 commit 651b2b2

File tree

2 files changed

+9
-5
lines changed

2 files changed

+9
-5
lines changed
 

‎CHANGELOG.md

+7-3
Original file line numberDiff line numberDiff line change
@@ -2,20 +2,24 @@
22

33
## master (unreleased)
44

5+
## 5.0.0 (30/10/2015)
6+
57
### New features
68

79
* [#302](https://github.com/clojure-emacs/clojure-mode/pull/302): Add new sexp navigation commands. `clojure-forward-logical-sexp` and `clojure-backward-logical-sexp` consider `^hints` and `#reader.macros` to be part of the sexp that follows them.
810
* [#303](https://github.com/clojure-emacs/clojure-mode/issues/303): Handle `boot` projects in `clojure-expected-ns`.
911
* Added dedicated modes for ClojureScript, ClojureC and ClojureX. All of them are derived from `clojure-mode`.
12+
* Added support for Gradle projects.
13+
* Vastly improved indentation engine.
14+
* Added support for reader conditionals.
15+
* Improved font-locking of namespaced symbols.
1016

1117
### Bugs fixed
1218

1319
* [#310](https://github.com/clojure-emacs/clojure-mode/issues/310) and [#311](https://github.com/clojure-emacs/clojure-mode/issues/311) Fix `clojure-expected-ns` in multi-source projects.
1420
* [#307](https://github.com/clojure-emacs/clojure-mode/issues/307): Don't highlight `handle` and `handler-case` as keywords.
15-
16-
### Bugs fixed
17-
1821
* Fix font-locking for def with special chars such as: `defn*`, `defspecial!`.
22+
* Numerous indentation issues.
1923

2024
## 4.1.0 (20/06/2015)
2125

‎clojure-mode.el

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
;; Bozhidar Batsov <bozhidar@batsov.com>
1010
;; URL: http://github.com/clojure-emacs/clojure-mode
1111
;; Keywords: languages clojure clojurescript lisp
12-
;; Version: 5.0.0-cvs
12+
;; Version: 5.0.0
1313
;; Package-Requires: ((emacs "24.3"))
1414

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

80-
(defconst clojure-mode-version "5.0.0-snapshot"
80+
(defconst clojure-mode-version "5.0.0"
8181
"The current version of `clojure-mode'.")
8282

8383
(defface clojure-keyword-face

0 commit comments

Comments
 (0)