Skip to content

Commit

Permalink
release 0.5.19
Browse files Browse the repository at this point in the history
  • Loading branch information
Bruce Hauman committed Jun 16, 2019
1 parent 9743432 commit b67e757
Show file tree
Hide file tree
Showing 8 changed files with 648 additions and 648 deletions.
4 changes: 2 additions & 2 deletions example/project.clj
Expand Up @@ -22,7 +22,7 @@

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

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

:profiles { :dev { :dependencies [;[cider/piggieback "0.2.1"]

[figwheel-sidecar "0.5.19-SNAPSHOT"]
[figwheel-sidecar "0.5.19"]
[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
@@ -1,4 +1,4 @@
(defproject lein-figwheel "0.5.19-SNAPSHOT"
(defproject lein-figwheel "0.5.19"
: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
Expand Up @@ -12,7 +12,7 @@
[leiningen.figwheel.fuzzy :as fuz]
[simple-lein-profile-merge.core :as lm]))

(def _figwheel-version_ "0.5.19-SNAPSHOT")
(def _figwheel-version_ "0.5.19")
(def _rebel-readline-cljs-version_ "0.1.4")

(defn make-subproject [project paths-to-add]
Expand Down
4 changes: 2 additions & 2 deletions sidecar/project.clj
@@ -1,4 +1,4 @@
(defproject figwheel-sidecar "0.5.19-SNAPSHOT"
(defproject figwheel-sidecar "0.5.19"
: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 @@ -24,7 +24,7 @@
org.clojure/clojure]]
[co.deps/ring-etag-middleware "0.2.0"]
[clj-stacktrace "0.2.8"]
[figwheel "0.5.19-SNAPSHOT"
[figwheel "0.5.19"
:exclusions [org.clojure/tools.reader]]
[hawk "0.2.11" :exclusions [org.clojure/clojure]]

Expand Down
1,278 changes: 639 additions & 639 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
Expand Up @@ -19,7 +19,7 @@

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

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

;; needed to determine the default color setting because windows
;; obtained these detection patterns from Jline3
Expand Down
2 changes: 1 addition & 1 deletion support/project.clj
@@ -1,4 +1,4 @@
(defproject figwheel "0.5.19-SNAPSHOT"
(defproject figwheel "0.5.19"
: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
Expand Up @@ -15,7 +15,7 @@
(:require-macros
[cljs.core.async.macros :refer [go go-loop]]))

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

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

0 comments on commit b67e757

Please sign in to comment.