Skip to content

Commit 6d8b360

Browse files
author
Bozhidar Batsov
committed
Add :package-version attribute to several recently added settings
1 parent b2dad37 commit 6d8b360

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed

cider-interaction.el

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,8 @@ in the `cider-error-buffer', which defaults to *cider-error*."
7676
(defcustom cider-interactive-eval-result-prefix "=> "
7777
"The prefix displayed in the minibuffer before a result value."
7878
:type 'string
79-
:group 'cider)
79+
:group 'cider
80+
:package-version '(cider . "0.5.0"))
8081

8182
(defcustom cider-switch-to-repl-command 'cider-switch-to-relevant-repl-buffer
8283
"Select the command to be invoked when switching-to-repl.

cider-repl.el

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,8 @@
6060
(defface cider-repl-err-output-face
6161
'((t (:inherit font-lock-warning-face)))
6262
"Face for STDERR output in the REPL buffer."
63-
:group 'cider-repl)
63+
:group 'cider-repl
64+
:package-version '(cider . "0.6.0"))
6465

6566
(defface cider-repl-input-face
6667
'((t (:bold t)))
@@ -112,12 +113,14 @@ is enforced or not."
112113
Nil means that `cider-repl-input-face' and `cider-repl-result-face'
113114
will be used."
114115
:type 'boolean
115-
:group 'cider-repl)
116+
:group 'cider-repl
117+
:package-version '(cider . "0.5.0"))
116118

117119
(defcustom cider-repl-result-prefix ""
118120
"The prefix displayed in the REPL before a result value."
119121
:type 'string
120-
:group 'cider)
122+
:group 'cider
123+
:package-version '(cider . "0.5.0"))
121124

122125
(defcustom cider-repl-tab-command 'cider-repl-indent-and-complete-symbol
123126
"Select the command to be invoked by the TAB key.

0 commit comments

Comments
 (0)