File tree Expand file tree Collapse file tree 9 files changed +21
-11
lines changed Expand file tree Collapse file tree 9 files changed +21
-11
lines changed Original file line number Diff line number Diff line change 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
313Releasing this to support nREPL changes
Original file line number Diff line number Diff line change @@ -206,7 +206,7 @@ Then include `lein-figwheel` in the `:plugins`
206206section 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
591591that makes it easy to start, stop and control Figwheel from Clojure.
592592
593593In 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
597597To start Figwheel from a script, you will need to require the
Original file line number Diff line number Diff line change 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" ]
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" ]
Original file line number Diff line number Diff line change 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"
Original file line number Diff line number Diff line change 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]
Original file line number Diff line number Diff line change 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"
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
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 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"
Original file line number Diff line number Diff line change 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))
You can’t perform that action at this time.
0 commit comments