Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 247ca70

Browse filesBrowse files
committed
Release 2.1.0
1 parent c4adc89 commit 247ca70
Copy full SHA for 247ca70

File tree

3 files changed

+13
-11
lines changed
Filter options

3 files changed

+13
-11
lines changed

‎CHANGELOG.md

Copy file name to clipboardExpand all lines: CHANGELOG.md
+8-6Lines changed: 8 additions & 6 deletions
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

Copy file name to clipboardExpand all lines: README.md
+2-2Lines changed: 2 additions & 2 deletions
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

Copy file name to clipboardExpand all lines: inf-clojure.el
+3-3Lines changed: 3 additions & 3 deletions
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 <bozhidar@batsov.com>
66
;; Olin Shivers <shivers@cs.cmu.edu>
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 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.