File tree Expand file tree Collapse file tree 3 files changed +13
-11
lines changed Expand file tree Collapse file tree 3 files changed +13
-11
lines changed Original file line number Diff line number Diff line change 22
33## master (unreleased)
44
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+
513### Bugs Fixed
614
715* [ #79 ] ( https://github.com/clojure-emacs/inf-clojure/pull/82 ) : Eldoc error when running boot repl.
1119* [ #119 ] ( https://github.com/clojure-emacs/inf-clojure/pull/119 ) : Set inf-clojure-buffer REPL type on detect.
1220* [ #120 ] ( https://github.com/clojure-emacs/inf-clojure/pull/120 ) : Send REPL string always, even if empty.
1321
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-
2022## 2.0.1 (2017-05-18)
2123
2224### Bugs Fixed
Original file line number Diff line number Diff line change @@ -152,7 +152,7 @@ what process do you send it to?
152152 you send it to that process.
153153- If you're in some other buffer (e.g., a source file), you
154154 send it to the process attached to buffer ` inf-clojure-buffer ` .
155-
155+
156156This process selection is performed by function ` inf-clojure-proc ` .
157157Whenever ` inf-clojure ` fires up a new process, it resets
158158` 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 -
269269
270270## License
271271
272- Copyright © 2014-2017 Bozhidar Batsov and [ contributors] [ ] .
272+ Copyright © 2014-2018 Bozhidar Batsov and [ contributors] [ ] .
273273
274274Distributed under the GNU General Public License; type <kbd >C-h C-c</kbd > to view it.
275275
Original file line number Diff line number Diff line change 11; ;; inf-clojure.el --- Run an external Clojure process in an Emacs buffer -*- lexical-binding : t ; -*-
22
3- ; ; Copyright © 2014-2017 Bozhidar Batsov
3+ ; ; Copyright © 2014-2018 Bozhidar Batsov
44
55; ; Authors: Bozhidar Batsov <[email protected] >66; ; Olin Shivers <[email protected] >77; ; URL: http://github.com/clojure-emacs/inf-clojure
88; ; Keywords: processes, clojure
9- ; ; Version: 2.1.0-snapshot
9+ ; ; Version: 2.1.0
1010; ; Package-Requires: ((emacs "24.4") (clojure-mode "5.6"))
1111
1212; ; This file is part of GNU Emacs.
7777 :link '(url-link :tag " GitHub" " https://github.com/clojure-emacs/inf-clojure" )
7878 :link '(emacs-commentary-link :tag " Commentary" " inf-clojure" ))
7979
80- (defconst inf-clojure-version " 2.1.0-snapshot "
80+ (defconst inf-clojure-version " 2.1.0"
8181 " The current version of `inf-clojure' ." )
8282
8383(defcustom inf-clojure-prompt-read-only t
You can’t perform that action at this time.
0 commit comments