Skip to content

Commit

Permalink
bump to 0.5.21-SNAPSHOT
Browse files Browse the repository at this point in the history
  • Loading branch information
Bruce Hauman committed May 12, 2020
1 parent b761517 commit 688904b
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions example/project.clj
Original file line number Diff line number Diff line change
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.20"]
[lein-figwheel "0.5.21-SNAPSHOT"]
#_[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.20"]
[figwheel-sidecar "0.5.21-SNAPSHOT"]
[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.20"
(defproject lein-figwheel "0.5.21-SNAPSHOT"
: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 @@ -12,7 +12,7 @@
[leiningen.figwheel.fuzzy :as fuz]
[simple-lein-profile-merge.core :as lm]))

(def _figwheel-version_ "0.5.20")
(def _figwheel-version_ "0.5.21-SNAPSHOT")
(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
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(defproject figwheel-sidecar "0.5.20"
(defproject figwheel-sidecar "0.5.21-SNAPSHOT"
: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.1"]
[clj-stacktrace "0.2.8"]
[figwheel "0.5.20"
[figwheel "0.5.21-SNAPSHOT"
:exclusions [org.clojure/tools.reader]]
[hawk "0.2.11" :exclusions [org.clojure/clojure]]

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

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

(def _figwheel-version_ "0.5.20")
(def _figwheel-version_ "0.5.21-SNAPSHOT")

;; 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
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(defproject figwheel "0.5.20"
(defproject figwheel "0.5.21-SNAPSHOT"
: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 @@ -15,7 +15,7 @@
(:require-macros
[cljs.core.async.macros :refer [go go-loop]]))

(def _figwheel-version_ "0.5.20")
(def _figwheel-version_ "0.5.21-SNAPSHOT")

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

0 comments on commit 688904b

Please sign in to comment.