Skip to content

Commit ff72d66

Browse files
committed
[Fix #171] Release 2.2.0
1 parent 2445af7 commit ff72d66

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed

CHANGELOG.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,11 @@
22

33
## master (unreleased)
44

5+
## 2.2.0 (2020-04-15)
6+
57
### New features
68

7-
* [#170](https://github.com/clojure-emacs/inf-clojure/pull/170): Add insert defun and last sexp commands
9+
* [#170](https://github.com/clojure-emacs/inf-clojure/pull/170): Add insert defun and last sexp commands.
810
* [#160](https://github.com/clojure-emacs/inf-clojure/pull/160): Support [Joker](https://joker-lang.org/).
911

1012
### Bugs fixed

inf-clojure.el

+5-3
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
;; Olin Shivers <[email protected]>
77
;; URL: http://github.com/clojure-emacs/inf-clojure
88
;; Keywords: processes, clojure
9-
;; Version: 2.2.0-snapshot
10-
;; Package-Requires: ((emacs "24.4") (clojure-mode "5.6"))
9+
;; Version: 2.2.0
10+
;; Package-Requires: ((emacs "24.4") (clojure-mode "5.11"))
1111

1212
;; This file is part of GNU Emacs.
1313

@@ -79,7 +79,9 @@
7979
:link '(url-link :tag "GitHub" "https://github.com/clojure-emacs/inf-clojure")
8080
:link '(emacs-commentary-link :tag "Commentary" "inf-clojure"))
8181

82-
(defconst inf-clojure-version "2.2.0-snapshot"
82+
(defconst inf-clojure-version
83+
(eval-when-compile
84+
(lm-version (or load-file-name buffer-file-name)))
8385
"The current version of `inf-clojure'.")
8486

8587
(defcustom inf-clojure-prompt-read-only t

0 commit comments

Comments
 (0)