Skip to content

Commit 247ca70

Browse files
committed
Release 2.1.0
1 parent c4adc89 commit 247ca70

File tree

3 files changed

+13
-11
lines changed

3 files changed

+13
-11
lines changed

CHANGELOG.md

+8-6
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
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.
@@ -11,12 +19,6 @@
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

README.md

+2-2
Original file line numberDiff line numberDiff 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+
156156
This process selection is performed by function `inf-clojure-proc`.
157157
Whenever `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

274274
Distributed under the GNU General Public License; type <kbd>C-h C-c</kbd> to view it.
275275

inf-clojure.el

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
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.
@@ -77,7 +77,7 @@
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

0 commit comments

Comments
 (0)