File tree 2 files changed +6
-4
lines changed
2 files changed +6
-4
lines changed Original file line number Diff line number Diff line change 2
2
3
3
## main (unreleased)
4
4
5
+ ## 0.4.0 (2025-05-15)
6
+
5
7
- [ #16 ] ( https://github.com/clojure-emacs/clojure-ts-mode/issues/16 ) : Introduce ` clojure-ts-align ` .
6
8
- [ #11 ] ( https://github.com/clojure-emacs/clojure-ts-mode/issues/11 ) : Enable regex syntax highlighting.
7
9
- [ #16 ] ( https://github.com/clojure-emacs/clojure-ts-mode/issues/16 ) : Add support for automatic aligning forms.
Original file line number Diff line number Diff line change 7
7
; ; Maintainer: Bozhidar Batsov <[email protected] >
8
8
; ; URL: http://github.com/clojure-emacs/clojure-ts-mode
9
9
; ; Keywords: languages clojure clojurescript lisp
10
- ; ; Version: 0.4.0-snapshot
10
+ ; ; Version: 0.4.0
11
11
; ; Package-Requires: ((emacs "30.1"))
12
12
13
13
; ; This file is not part of GNU Emacs.
74
74
:link '(emacs-commentary-link :tag " Commentary" " clojure-mode" ))
75
75
76
76
(defconst clojure-ts-mode-version
77
- " 0.4.0-snapshot "
77
+ " 0.4.0"
78
78
" The current version of `clojure-ts-mode' ." )
79
79
80
80
(defcustom clojure-ts-comment-macro-font-lock-body nil
@@ -156,15 +156,15 @@ three or more semicolons will be treated as outline headings. If set to
156
156
This means that `clojure-ts-thread-first-all' and
157
157
`clojure-ts-thread-last-all' not thread the deepest sexp inside the
158
158
current sexp."
159
- :package-version '(clojure-ts-mode . " 0.4.0 " )
159
+ :package-version '(clojure-ts-mode . " 0.4" )
160
160
:safe #'booleanp
161
161
:type 'boolean )
162
162
163
163
(defcustom clojure-ts-use-metadata-for-defn-privacy nil
164
164
" If nil, `clojure-ts-cycle-privacy' will use (defn- f []).
165
165
166
166
If t, it will use (defn ^:private f [])."
167
- :package-version '(clojure-ts-mode . " 0.4.0 " )
167
+ :package-version '(clojure-ts-mode . " 0.4" )
168
168
:safe #'booleanp
169
169
:type 'boolean )
170
170
You can’t perform that action at this time.
0 commit comments