Skip to content

Commit

Permalink
deploy 0.5.13
Browse files Browse the repository at this point in the history
  • Loading branch information
Bruce Hauman committed Aug 16, 2017
1 parent 9e8e6d4 commit 4795d5e
Show file tree
Hide file tree
Showing 10 changed files with 61 additions and 49 deletions.
8 changes: 7 additions & 1 deletion CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
## 0.5.12-SNAPSHOT Cache busting and more compiler option updates
## 0.5.13 Small updates

* remove the use of a deprecated Google Closure library function
goog.net.jsloader.load
* add CLJS compile option `:process-shim` to validation code

## 0.5.12 Cache busting and more compiler option updates

There have been constant problems when reloading an application into
Chrome where even a hard reload insists on pulling items from the
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ Then include `lein-figwheel` in the `:plugins`
section of your project.clj.

```clojure
[lein-figwheel "0.5.12"]
[lein-figwheel "0.5.13"]
```

#### Configure your builds
Expand Down Expand Up @@ -572,7 +572,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.12"]` in your dependencies.
`[figwheel-sidecar "0.5.13"]` 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
7 changes: 5 additions & 2 deletions example/project.clj
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,11 @@
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [
[org.clojure/clojure "1.9.0-alpha15"]
[org.clojure/clojurescript "1.9.908"]

;; trying to keep things compatible back to these versions at least
#_[org.clojure/clojure "1.8.0"]
[org.clojure/clojurescript "1.9.671"]
#_[org.clojure/clojurescript "1.8.51"]
[org.clojure/core.async "0.3.442"
:exclusions [org.clojure/tools.reader]]
[sablono "0.3.5"]
Expand All @@ -19,7 +22,7 @@

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

:node-dependencies [[source-map-support "0.2.8"]
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.13-SNAPSHOT"
(defproject lein-figwheel "0.5.13"
: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.13-SNAPSHOT")
(def _figwheel-version_ "0.5.13")

(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.13-SNAPSHOT"
(defproject figwheel-sidecar "0.5.13"
: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 @@ -23,7 +23,7 @@
[org.clojure/tools.reader
org.clojure/clojure]]
[clj-stacktrace "0.2.8"]
[figwheel "0.5.13-SNAPSHOT"
[figwheel "0.5.13"
:exclusions [org.clojure/tools.reader]]
[hawk "0.2.11" :exclusions [org.clojure/clojure]]

Expand Down
77 changes: 40 additions & 37 deletions sidecar/resources/compiled-utils/figwheel-helper-deploy.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion sidecar/src/figwheel_sidecar/config.clj
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

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

(def _figwheel-version_ "0.5.13-SNAPSHOT")
(def _figwheel-version_ "0.5.13")

;; file stamping pattern

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

(def js-stringify
(if (and (exists? js/JSON) (some? js/JSON.stringify))
Expand Down

0 comments on commit 4795d5e

Please sign in to comment.