File tree 10 files changed +3588
-2563
lines changed
10 files changed +3588
-2563
lines changed Original file line number Diff line number Diff line change
1
+ ## 0.5.17 new nREPL compatablity
2
+
3
+ Releasing this to support nREPL changes
4
+
5
+ * fix how nREPL is required to support the new nrepl codebase
6
+ * fix repl eval of namespace
7
+ * some updated schmema validations
8
+
1
9
## 0.5.16 Caching improvements & no trampoline on windows
2
10
3
11
Daniel Compton did some great work solving the caching issues.
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ Figwheel builds your ClojureScript code and hot loads it into the browser as you
8
8
9
9
There is a new Fighweel in town!
10
10
11
- [ Figwheel Main] ( https://github.com/bhauman/ figwheel-main ) is a
11
+ [ Figwheel Main] ( https://figwheel.org ) is a
12
12
complete re-write of Figwheel and represents the latest and greatest
13
13
version of Figwheel. It works great with Leiningen or the new Clojure
14
14
CLI Tools.
@@ -206,7 +206,7 @@ Then include `lein-figwheel` in the `:plugins`
206
206
section of your project.clj.
207
207
208
208
``` clojure
209
- [lein-figwheel " 0.5.16 " ]
209
+ [lein-figwheel " 0.5.17 " ]
210
210
```
211
211
212
212
#### Configure your builds
@@ -591,8 +591,8 @@ Figwheel has a Clojure
591
591
that makes it easy to start, stop and control Figwheel from Clojure.
592
592
593
593
In order for the following examples to work, you will need to have
594
- ` [figwheel-sidecar "0.5.16 "] ` and
595
- ` [com.bhauman/rebel-readline "0.1.2 "] ` in your dependencies.
594
+ ` [figwheel-sidecar "0.5.17 "] ` and
595
+ ` [com.bhauman/rebel-readline "0.1.4 "] ` in your dependencies.
596
596
597
597
To start Figwheel from a script, you will need to require the
598
598
` figwheel-sidecar.repl-api ` and provide your build configuration to
Original file line number Diff line number Diff line change 22
22
23
23
:plugins [[lein-ring " 0.8.13" :exclusions [org.clojure/clojure]]
24
24
#_[lein-cljsbuild " 1.1.2" ]
25
- [lein-figwheel " 0.5.17-SNAPSHOT " ]
25
+ [lein-figwheel " 0.5.17" ]
26
26
#_[lein-npm " 0.4.0" ]]
27
27
28
28
:node-dependencies [[source-map-support " 0.2.8" ]
116
116
117
117
:profiles { :dev { :dependencies [; [cider/piggieback "0.2.1"]
118
118
119
- [figwheel-sidecar " 0.5.17-SNAPSHOT " ]
119
+ [figwheel-sidecar " 0.5.17" ]
120
120
[org.clojure/tools.namespace " 0.2.11" ]
121
121
#_[org.clojure/tools.nrepl " 0.2.12" ]
122
122
#_[leiningen-core " 2.6.1" ]
Original file line number Diff line number Diff line change 1
- (defproject lein-figwheel " 0.5.17-SNAPSHOT "
1
+ (defproject lein-figwheel " 0.5.17"
2
2
:description " ClojureScript Autobuilder/Server which pushes changed files to the browser. This is the lein plugin."
3
3
:url " https://github.com/bhauman/lein-figwheel"
4
4
:license {:name " Eclipse Public License - v 1.0"
Original file line number Diff line number Diff line change 12
12
[leiningen.figwheel.fuzzy :as fuz]
13
13
[simple-lein-profile-merge.core :as lm]))
14
14
15
- (def _figwheel-version_ " 0.5.17-SNAPSHOT " )
15
+ (def _figwheel-version_ " 0.5.17" )
16
16
(def _rebel-readline-cljs-version_ " 0.1.4" )
17
17
18
18
(defn make-subproject [project paths-to-add]
Original file line number Diff line number Diff line change 1
- (defproject figwheel-sidecar " 0.5.17-SNAPSHOT "
1
+ (defproject figwheel-sidecar " 0.5.17"
2
2
:description " ClojureScript Autobuilder/Server which pushes changed files to the browser."
3
3
:url " https://github.com/bhauman/lein-figwheel"
4
4
:license {:name " Eclipse Public License - v 1.0"
24
24
org.clojure/clojure]]
25
25
[co.deps/ring-etag-middleware " 0.2.0" ]
26
26
[clj-stacktrace " 0.2.8" ]
27
- [figwheel " 0.5.17-SNAPSHOT "
27
+ [figwheel " 0.5.17"
28
28
:exclusions [org.clojure/tools.reader]]
29
29
[hawk " 0.2.11" :exclusions [org.clojure/clojure]]
30
30
Original file line number Diff line number Diff line change 18
18
19
19
#_(remove-ns 'figwheel-sidecar.config)
20
20
21
- (def _figwheel-version_ " 0.5.17-SNAPSHOT " )
21
+ (def _figwheel-version_ " 0.5.17" )
22
22
23
23
; ; needed to determine the default color setting because windows
24
24
; ; obtained these detection patterns from Jline3
Original file line number Diff line number Diff line change 1
- (defproject figwheel " 0.5.17-SNAPSHOT "
1
+ (defproject figwheel " 0.5.17"
2
2
:description " This project contains the client side code for Figwheel."
3
3
:url " https://github.com/bhauman/lein-figwheel"
4
4
:license {:name " Eclipse Public License - v 1.0"
Original file line number Diff line number Diff line change 16
16
[cljs.core.async.macros :refer [go go-loop]])
17
17
(:import [goog]))
18
18
19
- (def _figwheel-version_ " 0.5.17-SNAPSHOT " )
19
+ (def _figwheel-version_ " 0.5.17" )
20
20
21
21
(def js-stringify
22
22
(if (and (exists? js/JSON) (some? js/JSON.stringify))
You can’t perform that action at this time.
0 commit comments