File tree 3 files changed +13
-11
lines changed
3 files changed +13
-11
lines changed Original file line number Diff line number Diff line change 2
2
3
3
## master (unreleased)
4
4
5
+ ## 2.1.0 (2018-01-02)
6
+
7
+ ### New Features
8
+
9
+ * [ #114 ] ( https://github.com/clojure-emacs/inf-clojure/pull/114 ) : Introduce ` inf-clojure-project-type ` defcustom.
10
+ * [ #117 ] ( https://github.com/clojure-emacs/inf-clojure/pull/117 ) : Introduce ` tools.deps ` project type and ` inf-clojure-tools-deps-cmd ` .
11
+ * [ #122 ] ( https://github.com/clojure-emacs/inf-clojure/pull/122 ) : Introduce ` inf-clojure-completions-fn ` defcustom.
12
+
5
13
### Bugs Fixed
6
14
7
15
* [ #79 ] ( https://github.com/clojure-emacs/inf-clojure/pull/82 ) : Eldoc error when running boot repl.
11
19
* [ #119 ] ( https://github.com/clojure-emacs/inf-clojure/pull/119 ) : Set inf-clojure-buffer REPL type on detect.
12
20
* [ #120 ] ( https://github.com/clojure-emacs/inf-clojure/pull/120 ) : Send REPL string always, even if empty.
13
21
14
- ### New Features
15
-
16
- * [ #114 ] ( https://github.com/clojure-emacs/inf-clojure/pull/114 ) : Introduce ` inf-clojure-project-type ` defcustom.
17
- * [ #117 ] ( https://github.com/clojure-emacs/inf-clojure/pull/117 ) : Introduce ` tools.deps ` project type and ` inf-clojure-tools-deps-cmd ` .
18
- * [ #122 ] ( https://github.com/clojure-emacs/inf-clojure/pull/122 ) : Introduce ` inf-clojure-completions-fn ` defcustom.
19
-
20
22
## 2.0.1 (2017-05-18)
21
23
22
24
### Bugs Fixed
Original file line number Diff line number Diff line change @@ -152,7 +152,7 @@ what process do you send it to?
152
152
you send it to that process.
153
153
- If you're in some other buffer (e.g., a source file), you
154
154
send it to the process attached to buffer ` inf-clojure-buffer ` .
155
-
155
+
156
156
This process selection is performed by function ` inf-clojure-proc ` .
157
157
Whenever ` inf-clojure ` fires up a new process, it resets
158
158
` inf-clojure-buffer ` to be the new process's buffer. If you only run
@@ -269,7 +269,7 @@ This creates `.inf-clojure.log` in the project directory so that you can `tail -
269
269
270
270
## License
271
271
272
- Copyright © 2014-2017 Bozhidar Batsov and [ contributors] [ ] .
272
+ Copyright © 2014-2018 Bozhidar Batsov and [ contributors] [ ] .
273
273
274
274
Distributed under the GNU General Public License; type <kbd >C-h C-c</kbd > to view it.
275
275
Original file line number Diff line number Diff line change 1
1
; ;; inf-clojure.el --- Run an external Clojure process in an Emacs buffer -*- lexical-binding : t ; -*-
2
2
3
- ; ; Copyright © 2014-2017 Bozhidar Batsov
3
+ ; ; Copyright © 2014-2018 Bozhidar Batsov
4
4
5
5
; ; Authors: Bozhidar Batsov <[email protected] >
6
6
; ; Olin Shivers <[email protected] >
7
7
; ; URL: http://github.com/clojure-emacs/inf-clojure
8
8
; ; Keywords: processes, clojure
9
- ; ; Version: 2.1.0-snapshot
9
+ ; ; Version: 2.1.0
10
10
; ; Package-Requires: ((emacs "24.4") (clojure-mode "5.6"))
11
11
12
12
; ; This file is part of GNU Emacs.
77
77
:link '(url-link :tag " GitHub" " https://github.com/clojure-emacs/inf-clojure" )
78
78
:link '(emacs-commentary-link :tag " Commentary" " inf-clojure" ))
79
79
80
- (defconst inf-clojure-version " 2.1.0-snapshot "
80
+ (defconst inf-clojure-version " 2.1.0"
81
81
" The current version of `inf-clojure' ." )
82
82
83
83
(defcustom inf-clojure-prompt-read-only t
You can’t perform that action at this time.
0 commit comments