Skip to content

Commit 825950a

Browse files
author
Bruce Hauman
committed
bump to 0.5.4-6
1 parent 4a34663 commit 825950a

9 files changed

Lines changed: 15 additions & 10 deletions

File tree

CHANGES.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## 0.5.4-6 update sidecar system apis to handle result of fetch-config
2+
3+
* PR #447 change the validator to allow ES6 and :no-transpile
4+
* #440 allow figwheel system to take the result of (config/fetch-config)
5+
16
## 0.5.4-5 quick fix
27

38
* protecting against bad data broke Map style :builds declaration, fixed

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-SNAPSHOT"]
20+
[lein-figwheel "0.5.4-6"]
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-SNAPSHOT"]
102+
[figwheel-sidecar "0.5.4-6"]
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-SNAPSHOT"
1+
(defproject lein-figwheel "0.5.4-6"
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-SNAPSHOT")
13+
(def _figwheel-version_ "0.5.4-6")
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-SNAPSHOT"
1+
(defproject figwheel-sidecar "0.5.4-6"
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-SNAPSHOT"
24+
[figwheel "0.5.4-6"
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-SNAPSHOT")
16+
(def _figwheel-version_ "0.5.4-6")
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-SNAPSHOT"
1+
(defproject figwheel "0.5.4-6"
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-SNAPSHOT")
19+
(def _figwheel-version_ "0.5.4-6")
2020

2121
;; exception formatting
2222

0 commit comments

Comments
 (0)