Skip to content
This repository was archived by the owner on Feb 28, 2020. It is now read-only.

Commit 8221262

Browse files
committed
Increment version number
1 parent 0b6ea07 commit 8221262

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

build.boot

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737

3838
(task-options!
3939
pom {:project 'nightlight
40-
:version "2.3.1-SNAPSHOT"
40+
:version "2.3.1"
4141
:description "An embedded Clojure editor"
4242
:url "https://github.com/oakes/Nightlight"
4343
:license {"Public Domain" "http://unlicense.org/UNLICENSE"}}

lein-nightlight/project.clj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
(defproject nightlight/lein-nightlight "2.3.0"
1+
(defproject nightlight/lein-nightlight "2.3.1"
22
:description "A conveninent Nightlight launcher for Leiningen projects"
33
:url "https://github.com/oakes/Nightlight"
44
:license {:name "Public Domain"
55
:url "http://unlicense.org/UNLICENSE"}
6-
:dependencies [[nightlight "2.3.0" :exclusions [org.clojure/core.async]]
6+
:dependencies [[nightlight "2.3.1" :exclusions [org.clojure/core.async]]
77
[leinjacker "0.4.2"]
88
[org.clojure/tools.cli "0.3.5"]]
99
:repositories [["clojars" {:url "https://clojars.org/repo"

lein-nightlight/src/leiningen/nightlight.clj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
(eval/eval-in-project
1313
(deps/add-if-missing
1414
project
15-
'[nightlight/lein-nightlight "2.3.0"])
15+
'[nightlight/lein-nightlight "2.3.1"])
1616
`(do
1717
(nightlight.core/start ~options)
1818
(when '~main (require '~main)))

src/cljs/nightlight/core.cljs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
[nightlight.watch :as watch]
1010
[reagent.core :as r]))
1111

12-
(def version "2.3.0")
12+
(def version "2.3.1")
1313

1414
(defn init-tree [{:keys [primary-text nested-items selection options]}]
1515
(when (and (:hosted? options)

0 commit comments

Comments
 (0)