Skip to content

Commit f769a3a

Browse files
committed
Kill the redundant VERSION in project.clj
1 parent 38715b3 commit f769a3a

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

project.clj

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
1-
(def VERSION "0.20.0-SNAPSHOT")
2-
3-
(defproject cider/cider-nrepl VERSION
1+
(defproject cider/cider-nrepl "0.20.0-SNAPSHOT"
42
:description "nREPL middlewares for CIDER"
53
:url "https://github.com/clojure-emacs/cider-nrepl"
64
:license {:name "Eclipse Public License"

src/cider_nrepl/plugin.clj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
[clojure.java.io :as io]
66
[leiningen.core.main :as lein]))
77

8-
;; Keep in sync with VERSION-FORM in project.clj
8+
;; Keep in sync with the version in project.clj
99
(defn- version
1010
[]
1111
(let [v (-> (io/resource "cider/cider-nrepl/project.clj")

0 commit comments

Comments
 (0)