Skip to content

Commit

Permalink
Release 2.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
bbatsov committed Jan 2, 2018
1 parent c4adc89 commit 247ca70
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 11 deletions.
14 changes: 8 additions & 6 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@

## master (unreleased)

## 2.1.0 (2018-01-02)

### New Features

* [#114](https://github.com/clojure-emacs/inf-clojure/pull/114): Introduce `inf-clojure-project-type` defcustom.
* [#117](https://github.com/clojure-emacs/inf-clojure/pull/117): Introduce `tools.deps` project type and `inf-clojure-tools-deps-cmd`.
* [#122](https://github.com/clojure-emacs/inf-clojure/pull/122): Introduce `inf-clojure-completions-fn` defcustom.

### Bugs Fixed

* [#79](https://github.com/clojure-emacs/inf-clojure/pull/82): Eldoc error when running boot repl.
Expand All @@ -11,12 +19,6 @@
* [#119](https://github.com/clojure-emacs/inf-clojure/pull/119): Set inf-clojure-buffer REPL type on detect.
* [#120](https://github.com/clojure-emacs/inf-clojure/pull/120): Send REPL string always, even if empty.

### New Features

* [#114](https://github.com/clojure-emacs/inf-clojure/pull/114): Introduce `inf-clojure-project-type` defcustom.
* [#117](https://github.com/clojure-emacs/inf-clojure/pull/117): Introduce `tools.deps` project type and `inf-clojure-tools-deps-cmd`.
* [#122](https://github.com/clojure-emacs/inf-clojure/pull/122): Introduce `inf-clojure-completions-fn` defcustom.

## 2.0.1 (2017-05-18)

### Bugs Fixed
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ what process do you send it to?
you send it to that process.
- If you're in some other buffer (e.g., a source file), you
send it to the process attached to buffer `inf-clojure-buffer`.

This process selection is performed by function `inf-clojure-proc`.
Whenever `inf-clojure` fires up a new process, it resets
`inf-clojure-buffer` to be the new process's buffer. If you only run
Expand Down Expand Up @@ -269,7 +269,7 @@ This creates `.inf-clojure.log` in the project directory so that you can `tail -

## License

Copyright © 2014-2017 Bozhidar Batsov and [contributors][].
Copyright © 2014-2018 Bozhidar Batsov and [contributors][].

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

Expand Down
6 changes: 3 additions & 3 deletions inf-clojure.el
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
;;; inf-clojure.el --- Run an external Clojure process in an Emacs buffer -*- lexical-binding: t; -*-

;; Copyright © 2014-2017 Bozhidar Batsov
;; Copyright © 2014-2018 Bozhidar Batsov

;; Authors: Bozhidar Batsov <bozhidar@batsov.com>
;; Olin Shivers <shivers@cs.cmu.edu>
;; URL: http://github.com/clojure-emacs/inf-clojure
;; Keywords: processes, clojure
;; Version: 2.1.0-snapshot
;; Version: 2.1.0
;; Package-Requires: ((emacs "24.4") (clojure-mode "5.6"))

;; This file is part of GNU Emacs.
Expand Down Expand Up @@ -77,7 +77,7 @@
:link '(url-link :tag "GitHub" "https://github.com/clojure-emacs/inf-clojure")
:link '(emacs-commentary-link :tag "Commentary" "inf-clojure"))

(defconst inf-clojure-version "2.1.0-snapshot"
(defconst inf-clojure-version "2.1.0"
"The current version of `inf-clojure'.")

(defcustom inf-clojure-prompt-read-only t
Expand Down

0 comments on commit 247ca70

Please sign in to comment.