Skip to content

Commit

Permalink
bump to 0.5.4-7
Browse files Browse the repository at this point in the history
  • Loading branch information
Bruce Hauman committed Jul 8, 2016
1 parent c346a65 commit a62ac7e
Show file tree
Hide file tree
Showing 10 changed files with 16 additions and 12 deletions.
4 changes: 4 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 0.5.4-7 fix :open-command

* PR #449 Arguments to open-file-command must be strings, not numeric.

## 0.5.4-6 update sidecar system apis to handle result of fetch-config

* PR #447 change the validator to allow ES6 and :no-transpile
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ Then include `lein-figwheel` in the `:plugins`
section of your project.clj.

```clojure
[lein-figwheel "0.5.4-5"]
[lein-figwheel "0.5.4-7"]
```

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

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

To start Figwheel from a script, you will need to require the
`figwheel-sidecar.repl-api` and provide your build configuration to
Expand Down
4 changes: 2 additions & 2 deletions example/project.clj
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

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

:node-dependencies [[source-map-support "0.2.8"]
Expand Down Expand Up @@ -99,7 +99,7 @@
}}}}

:profiles { :dev { :dependencies [[com.cemerick/piggieback "0.2.1"]
[figwheel-sidecar "0.5.4-6"]
[figwheel-sidecar "0.5.4-7"]
[org.clojure/tools.namespace "0.2.11"]
[org.clojure/tools.nrepl "0.2.12"]
[leiningen-core "2.6.1"]]
Expand Down
2 changes: 1 addition & 1 deletion plugin/project.clj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(defproject lein-figwheel "0.5.4-6"
(defproject lein-figwheel "0.5.4-7"
:description "ClojureScript Autobuilder/Server which pushes changed files to the browser. This is the lein plugin."
:url "https://github.com/bhauman/lein-figwheel"
:license {:name "Eclipse Public License - v 1.0"
Expand Down
2 changes: 1 addition & 1 deletion plugin/src/leiningen/figwheel.clj
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
[leiningen.figwheel.fuzzy :as fuz]
[simple-lein-profile-merge.core :as lm]))

(def _figwheel-version_ "0.5.4-6")
(def _figwheel-version_ "0.5.4-7")

(defn make-subproject [project paths-to-add]
(with-meta
Expand Down
4 changes: 2 additions & 2 deletions sidecar/project.clj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(defproject figwheel-sidecar "0.5.4-6"
(defproject figwheel-sidecar "0.5.4-7"
:description "ClojureScript Autobuilder/Server which pushes changed files to the browser."
:url "https://github.com/bhauman/lein-figwheel"
:license {:name "Eclipse Public License - v 1.0"
Expand All @@ -21,7 +21,7 @@
[org.clojure/tools.reader
org.clojure/clojure]]
[clj-stacktrace "0.2.8"]
[figwheel "0.5.4-6"
[figwheel "0.5.4-7"
:exclusions [org.clojure/tools.reader]]
[hawk "0.2.10" :exclusions [org.clojure/clojure]]

Expand Down
2 changes: 1 addition & 1 deletion sidecar/resources/compiled-utils/figwheel-helper-deploy.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion sidecar/src/figwheel_sidecar/config.clj
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
[figwheel-sidecar.config-check.ansi :refer [color-text with-color-when]]
[figwheel-sidecar.utils :as utils]))

(def _figwheel-version_ "0.5.4-6")
(def _figwheel-version_ "0.5.4-7")

;; trying to keep this whole file clojure 1.5.1 compatible because
;; it is required by the leiningen process in the plugin
Expand Down
2 changes: 1 addition & 1 deletion support/project.clj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(defproject figwheel "0.5.4-6"
(defproject figwheel "0.5.4-7"
:description "This project contains the client side code for Figwheel."
:url "https://github.com/bhauman/lein-figwheel"
:license {:name "Eclipse Public License - v 1.0"
Expand Down
2 changes: 1 addition & 1 deletion support/src/figwheel/client.cljs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
[cljs.core.async.macros :refer [go go-loop]])
(:import [goog]))

(def _figwheel-version_ "0.5.4-6")
(def _figwheel-version_ "0.5.4-7")

;; exception formatting

Expand Down

0 comments on commit a62ac7e

Please sign in to comment.