Skip to content

Commit aed8602

Browse files
author
Bruce Hauman
committed
release 0.5.18
1 parent dbb839a commit aed8602

File tree

9 files changed

+21
-11
lines changed

9 files changed

+21
-11
lines changed

CHANGES.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
## 0.5.18 maintenance release
2+
3+
* if the new nrepl is available start the server with it
4+
* only load nREPL dep if an :nrepl-port has been specified
5+
* remove single segment ns in namespace forms forms
6+
* allow `:npm-deps` to be `true` as well as `false`
7+
* added better error checking for missing ring handler
8+
* Clojure version comparison logic fix
9+
* change client side logging of a compile exception to a console.warning to support React Native better
10+
111
## 0.5.17 new nREPL compatibility
212

313
Releasing this to support nREPL changes

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ Then include `lein-figwheel` in the `:plugins`
206206
section of your project.clj.
207207

208208
```clojure
209-
[lein-figwheel "0.5.17"]
209+
[lein-figwheel "0.5.18"]
210210
```
211211

212212
#### Configure your builds
@@ -591,7 +591,7 @@ Figwheel has a Clojure
591591
that makes it easy to start, stop and control Figwheel from Clojure.
592592

593593
In order for the following examples to work, you will need to have
594-
`[figwheel-sidecar "0.5.17"]` and
594+
`[figwheel-sidecar "0.5.18"]` and
595595
`[com.bhauman/rebel-readline "0.1.4"]` in your dependencies.
596596

597597
To start Figwheel from a script, you will need to require the

example/project.clj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
:plugins [[lein-ring "0.8.13" :exclusions [org.clojure/clojure]]
2424
#_[lein-cljsbuild "1.1.2"]
25-
[lein-figwheel "0.5.18-SNAPSHOT"]
25+
[lein-figwheel "0.5.18"]
2626
#_[lein-npm "0.4.0"]]
2727

2828
:node-dependencies [[source-map-support "0.2.8"]
@@ -116,7 +116,7 @@
116116

117117
:profiles { :dev { :dependencies [;[cider/piggieback "0.2.1"]
118118

119-
[figwheel-sidecar "0.5.18-SNAPSHOT"]
119+
[figwheel-sidecar "0.5.18"]
120120
[org.clojure/tools.namespace "0.2.11"]
121121
#_[org.clojure/tools.nrepl "0.2.12"]
122122
#_[leiningen-core "2.6.1"]

plugin/project.clj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
(defproject lein-figwheel "0.5.18-SNAPSHOT"
1+
(defproject lein-figwheel "0.5.18"
22
:description "ClojureScript Autobuilder/Server which pushes changed files to the browser. This is the lein plugin."
33
:url "https://github.com/bhauman/lein-figwheel"
44
:license {:name "Eclipse Public License - v 1.0"

plugin/src/leiningen/figwheel.clj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
[leiningen.figwheel.fuzzy :as fuz]
1313
[simple-lein-profile-merge.core :as lm]))
1414

15-
(def _figwheel-version_ "0.5.18-SNAPSHOT")
15+
(def _figwheel-version_ "0.5.18")
1616
(def _rebel-readline-cljs-version_ "0.1.4")
1717

1818
(defn make-subproject [project paths-to-add]

sidecar/project.clj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
(defproject figwheel-sidecar "0.5.18-SNAPSHOT"
1+
(defproject figwheel-sidecar "0.5.18"
22
:description "ClojureScript Autobuilder/Server which pushes changed files to the browser."
33
:url "https://github.com/bhauman/lein-figwheel"
44
:license {:name "Eclipse Public License - v 1.0"
@@ -24,7 +24,7 @@
2424
org.clojure/clojure]]
2525
[co.deps/ring-etag-middleware "0.2.0"]
2626
[clj-stacktrace "0.2.8"]
27-
[figwheel "0.5.18-SNAPSHOT"
27+
[figwheel "0.5.18"
2828
:exclusions [org.clojure/tools.reader]]
2929
[hawk "0.2.11" :exclusions [org.clojure/clojure]]
3030

sidecar/src/figwheel_sidecar/config.clj

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

2020
#_(remove-ns 'figwheel-sidecar.config)
2121

22-
(def _figwheel-version_ "0.5.18-SNAPSHOT")
22+
(def _figwheel-version_ "0.5.18")
2323

2424
;; needed to determine the default color setting because windows
2525
;; obtained these detection patterns from Jline3

support/project.clj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
(defproject figwheel "0.5.18-SNAPSHOT"
1+
(defproject figwheel "0.5.18"
22
:description "This project contains the client side code for Figwheel."
33
:url "https://github.com/bhauman/lein-figwheel"
44
:license {:name "Eclipse Public License - v 1.0"

support/src/figwheel/client.cljs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
(:require-macros
1616
[cljs.core.async.macros :refer [go go-loop]]))
1717

18-
(def _figwheel-version_ "0.5.18-SNAPSHOT")
18+
(def _figwheel-version_ "0.5.18")
1919

2020
(def js-stringify
2121
(if (and (exists? js/JSON) (some? js/JSON.stringify))

0 commit comments

Comments
 (0)