Skip to content

Commit a62ac7e

Browse files
author
Bruce Hauman
committed
bump to 0.5.4-7
1 parent c346a65 commit a62ac7e

10 files changed

Lines changed: 16 additions & 12 deletions

File tree

CHANGES.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 0.5.4-7 fix :open-command
2+
3+
* PR #449 Arguments to open-file-command must be strings, not numeric.
4+
15
## 0.5.4-6 update sidecar system apis to handle result of fetch-config
26

37
* PR #447 change the validator to allow ES6 and :no-transpile

README.md

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

174174
```clojure
175-
[lein-figwheel "0.5.4-5"]
175+
[lein-figwheel "0.5.4-7"]
176176
```
177177

178178
#### Configure your builds
@@ -536,7 +536,7 @@ Figwheel has a Clojure
536536
that makes it easy to start, stop and control Figwheel from Clojure.
537537

538538
In order for the following examples to work, you will need to have
539-
`[figwheel-sidecar "0.5.4-5"]` in your dependencies.
539+
`[figwheel-sidecar "0.5.4-7"]` in your dependencies.
540540

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

example/project.clj

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

1818
:plugins [[lein-ring "0.8.13" :exclusions [org.clojure/clojure]]
1919
#_[lein-cljsbuild "1.1.2"]
20-
[lein-figwheel "0.5.4-6"]
20+
[lein-figwheel "0.5.4-7"]
2121
#_[lein-npm "0.4.0"]]
2222

2323
:node-dependencies [[source-map-support "0.2.8"]
@@ -99,7 +99,7 @@
9999
}}}}
100100

101101
:profiles { :dev { :dependencies [[com.cemerick/piggieback "0.2.1"]
102-
[figwheel-sidecar "0.5.4-6"]
102+
[figwheel-sidecar "0.5.4-7"]
103103
[org.clojure/tools.namespace "0.2.11"]
104104
[org.clojure/tools.nrepl "0.2.12"]
105105
[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.4-6"
1+
(defproject lein-figwheel "0.5.4-7"
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
@@ -10,7 +10,7 @@
1010
[leiningen.figwheel.fuzzy :as fuz]
1111
[simple-lein-profile-merge.core :as lm]))
1212

13-
(def _figwheel-version_ "0.5.4-6")
13+
(def _figwheel-version_ "0.5.4-7")
1414

1515
(defn make-subproject [project paths-to-add]
1616
(with-meta

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.4-6"
1+
(defproject figwheel-sidecar "0.5.4-7"
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"
@@ -21,7 +21,7 @@
2121
[org.clojure/tools.reader
2222
org.clojure/clojure]]
2323
[clj-stacktrace "0.2.8"]
24-
[figwheel "0.5.4-6"
24+
[figwheel "0.5.4-7"
2525
:exclusions [org.clojure/tools.reader]]
2626
[hawk "0.2.10" :exclusions [org.clojure/clojure]]
2727

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

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

sidecar/src/figwheel_sidecar/config.clj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
[figwheel-sidecar.config-check.ansi :refer [color-text with-color-when]]
1414
[figwheel-sidecar.utils :as utils]))
1515

16-
(def _figwheel-version_ "0.5.4-6")
16+
(def _figwheel-version_ "0.5.4-7")
1717

1818
;; trying to keep this whole file clojure 1.5.1 compatible because
1919
;; it is required by the leiningen process in the plugin

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.4-6"
1+
(defproject figwheel "0.5.4-7"
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
@@ -16,7 +16,7 @@
1616
[cljs.core.async.macros :refer [go go-loop]])
1717
(:import [goog]))
1818

19-
(def _figwheel-version_ "0.5.4-6")
19+
(def _figwheel-version_ "0.5.4-7")
2020

2121
;; exception formatting
2222

0 commit comments

Comments
 (0)