Skip to content

Commit c0ef37c

Browse files
author
Bruce Hauman
committed
release 0.5.17
1 parent bda2b18 commit c0ef37c

File tree

10 files changed

+3588
-2563
lines changed

10 files changed

+3588
-2563
lines changed

CHANGES.md

+8
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
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+
19
## 0.5.16 Caching improvements & no trampoline on windows
210

311
Daniel Compton did some great work solving the caching issues.

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Figwheel builds your ClojureScript code and hot loads it into the browser as you
88

99
There is a new Fighweel in town!
1010

11-
[Figwheel Main](https://github.com/bhauman/figwheel-main) is a
11+
[Figwheel Main](https://figwheel.org) is a
1212
complete re-write of Figwheel and represents the latest and greatest
1313
version of Figwheel. It works great with Leiningen or the new Clojure
1414
CLI Tools.
@@ -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.16"]
209+
[lein-figwheel "0.5.17"]
210210
```
211211

212212
#### Configure your builds
@@ -591,8 +591,8 @@ 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.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.
596596

597597
To start Figwheel from a script, you will need to require the
598598
`figwheel-sidecar.repl-api` and provide your build configuration to

example/project.clj

+2-2
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.17-SNAPSHOT"]
25+
[lein-figwheel "0.5.17"]
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.17-SNAPSHOT"]
119+
[figwheel-sidecar "0.5.17"]
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

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
(defproject lein-figwheel "0.5.17-SNAPSHOT"
1+
(defproject lein-figwheel "0.5.17"
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

+1-1
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.17-SNAPSHOT")
15+
(def _figwheel-version_ "0.5.17")
1616
(def _rebel-readline-cljs-version_ "0.1.4")
1717

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

sidecar/project.clj

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
(defproject figwheel-sidecar "0.5.17-SNAPSHOT"
1+
(defproject figwheel-sidecar "0.5.17"
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.17-SNAPSHOT"
27+
[figwheel "0.5.17"
2828
:exclusions [org.clojure/tools.reader]]
2929
[hawk "0.2.11" :exclusions [org.clojure/clojure]]
3030

sidecar/resources/compiled-utils/figwheel-helper-deploy.js

+3,567-2,550
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

sidecar/src/figwheel_sidecar/config.clj

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

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

21-
(def _figwheel-version_ "0.5.17-SNAPSHOT")
21+
(def _figwheel-version_ "0.5.17")
2222

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

support/project.clj

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
(defproject figwheel "0.5.17-SNAPSHOT"
1+
(defproject figwheel "0.5.17"
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

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
[cljs.core.async.macros :refer [go go-loop]])
1717
(:import [goog]))
1818

19-
(def _figwheel-version_ "0.5.17-SNAPSHOT")
19+
(def _figwheel-version_ "0.5.17")
2020

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

0 commit comments

Comments
 (0)