Skip to content

Commit 4795d5e

Browse files
author
Bruce Hauman
committed
deploy 0.5.13
1 parent 9e8e6d4 commit 4795d5e

10 files changed

Lines changed: 61 additions & 49 deletions

File tree

CHANGES.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
1-
## 0.5.12-SNAPSHOT Cache busting and more compiler option updates
1+
## 0.5.13 Small updates
2+
3+
* remove the use of a deprecated Google Closure library function
4+
goog.net.jsloader.load
5+
* add CLJS compile option `:process-shim` to validation code
6+
7+
## 0.5.12 Cache busting and more compiler option updates
28

39
There have been constant problems when reloading an application into
410
Chrome where even a hard reload insists on pulling items from the

README.md

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

191191
```clojure
192-
[lein-figwheel "0.5.12"]
192+
[lein-figwheel "0.5.13"]
193193
```
194194

195195
#### Configure your builds
@@ -572,7 +572,7 @@ Figwheel has a Clojure
572572
that makes it easy to start, stop and control Figwheel from Clojure.
573573

574574
In order for the following examples to work, you will need to have
575-
`[figwheel-sidecar "0.5.12"]` in your dependencies.
575+
`[figwheel-sidecar "0.5.13"]` in your dependencies.
576576

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

example/project.clj

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,11 @@
55
:url "http://www.eclipse.org/legal/epl-v10.html"}
66
:dependencies [
77
[org.clojure/clojure "1.9.0-alpha15"]
8+
[org.clojure/clojurescript "1.9.908"]
9+
10+
;; trying to keep things compatible back to these versions at least
811
#_[org.clojure/clojure "1.8.0"]
9-
[org.clojure/clojurescript "1.9.671"]
12+
#_[org.clojure/clojurescript "1.8.51"]
1013
[org.clojure/core.async "0.3.442"
1114
:exclusions [org.clojure/tools.reader]]
1215
[sablono "0.3.5"]
@@ -19,7 +22,7 @@
1922

2023
:plugins [[lein-ring "0.8.13" :exclusions [org.clojure/clojure]]
2124
#_[lein-cljsbuild "1.1.2"]
22-
[lein-figwheel "0.5.13-SNAPSHOT"]
25+
[lein-figwheel "0.5.13"]
2326
#_[lein-npm "0.4.0"]]
2427

2528
:node-dependencies [[source-map-support "0.2.8"]

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.13-SNAPSHOT"
1+
(defproject lein-figwheel "0.5.13"
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.13-SNAPSHOT")
13+
(def _figwheel-version_ "0.5.13")
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.13-SNAPSHOT"
1+
(defproject figwheel-sidecar "0.5.13"
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"
@@ -23,7 +23,7 @@
2323
[org.clojure/tools.reader
2424
org.clojure/clojure]]
2525
[clj-stacktrace "0.2.8"]
26-
[figwheel "0.5.13-SNAPSHOT"
26+
[figwheel "0.5.13"
2727
:exclusions [org.clojure/tools.reader]]
2828
[hawk "0.2.11" :exclusions [org.clojure/clojure]]
2929

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

Lines changed: 40 additions & 37 deletions
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
@@ -18,7 +18,7 @@
1818

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

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

2323
;; file stamping pattern
2424

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.13-SNAPSHOT"
1+
(defproject figwheel "0.5.13"
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.13-SNAPSHOT")
19+
(def _figwheel-version_ "0.5.13")
2020

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

0 commit comments

Comments
 (0)