branch: elpa/inf-clojure commit 247ca70f8ba5104be292aea20fbde6adb37e359f Author: Bozhidar Batsov <bozhi...@batsov.com> Commit: Bozhidar Batsov <bozhi...@batsov.com>
Release 2.1.0 --- CHANGELOG.md | 14 ++++++++------ README.md | 4 ++-- inf-clojure.el | 6 +++--- 3 files changed, 13 insertions(+), 11 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 27cc79a..19fb15a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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. @@ -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 diff --git a/README.md b/README.md index 2d195d9..16f78b1 100644 --- a/README.md +++ b/README.md @@ -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 @@ -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. diff --git a/inf-clojure.el b/inf-clojure.el index fb3abec..351c3b1 100644 --- a/inf-clojure.el +++ b/inf-clojure.el @@ -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 <bozhi...@batsov.com> ;; Olin Shivers <shiv...@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. @@ -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