Skip to content

Commit c2269ea

Browse files
committed
Release 0.4
1 parent 547bdb1 commit c2269ea

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

CHANGELOG.md

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

33
## main (unreleased)
44

5+
## 0.4.0 (2025-05-15)
6+
57
- [#16](https://github.com/clojure-emacs/clojure-ts-mode/issues/16): Introduce `clojure-ts-align`.
68
- [#11](https://github.com/clojure-emacs/clojure-ts-mode/issues/11): Enable regex syntax highlighting.
79
- [#16](https://github.com/clojure-emacs/clojure-ts-mode/issues/16): Add support for automatic aligning forms.

clojure-ts-mode.el

+4-4
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
;; Maintainer: Bozhidar Batsov <[email protected]>
88
;; URL: http://github.com/clojure-emacs/clojure-ts-mode
99
;; Keywords: languages clojure clojurescript lisp
10-
;; Version: 0.4.0-snapshot
10+
;; Version: 0.4.0
1111
;; Package-Requires: ((emacs "30.1"))
1212

1313
;; This file is not part of GNU Emacs.
@@ -74,7 +74,7 @@
7474
:link '(emacs-commentary-link :tag "Commentary" "clojure-mode"))
7575

7676
(defconst clojure-ts-mode-version
77-
"0.4.0-snapshot"
77+
"0.4.0"
7878
"The current version of `clojure-ts-mode'.")
7979

8080
(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
156156
This means that `clojure-ts-thread-first-all' and
157157
`clojure-ts-thread-last-all' not thread the deepest sexp inside the
158158
current sexp."
159-
:package-version '(clojure-ts-mode . "0.4.0")
159+
:package-version '(clojure-ts-mode . "0.4")
160160
:safe #'booleanp
161161
:type 'boolean)
162162

163163
(defcustom clojure-ts-use-metadata-for-defn-privacy nil
164164
"If nil, `clojure-ts-cycle-privacy' will use (defn- f []).
165165
166166
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")
168168
:safe #'booleanp
169169
:type 'boolean)
170170

0 commit comments

Comments
 (0)