Skip to content

Commit

Permalink
bumping to 0.5.4 release
Browse files Browse the repository at this point in the history
  • Loading branch information
Bruce Hauman committed Jun 12, 2016
1 parent 6bad552 commit abc2379
Show file tree
Hide file tree
Showing 10 changed files with 18 additions and 16 deletions.
4 changes: 3 additions & 1 deletion CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
## 0.5.4-SNAPSHOT Error messages and way more!
## 0.5.4 Error messages and way more!

This is the most solid release of Figwheel so far ... enjoy!!

#### Code context in Errors and Warnings

Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -164,15 +164,15 @@ Make sure you have the [latest version of leiningen installed](https://github.co
Then include the following `:dependencies` in your `project.clj` file.

```clojure
[org.clojure/clojure "1.7.0"]
[org.clojure/clojurescript "1.7.228"]
[org.clojure/clojure "1.8.0"]
[org.clojure/clojurescript "1.8.51"]
```

Then include `lein-figwheel` in the `:plugins`
section of your project.clj.

```clojure
[lein-figwheel "0.5.1"]
[lein-figwheel "0.5.4"]
```

#### 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.1"]` in your dependencies.
`[figwheel-sidecar "0.5.4"]` 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
6 changes: 3 additions & 3 deletions example/project.clj
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@
#_[datascript "0.9.0"]
[com.andrewmcveigh/cljs-time "0.3.11"]
[cljs-http "0.1.35"]]

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

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

:profiles { :dev { :dependencies [[com.cemerick/piggieback "0.2.1"]
[figwheel-sidecar "0.5.4-SNAPSHOT"]
[figwheel-sidecar "0.5.4"]
[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-SNAPSHOT"
(defproject lein-figwheel "0.5.4"
: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 metrics]
[simple-lein-profile-merge.core :as lm]))

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

(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-SNAPSHOT"
(defproject figwheel-sidecar "0.5.4"
: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 @@ -18,7 +18,7 @@
:exclusions [ring/ring-core org.clojure/clojure]]
[compojure "1.5.0" :exclusions [org.clojure/clojure]]
[clj-stacktrace "0.2.8"]
[figwheel "0.5.4-SNAPSHOT"
[figwheel "0.5.4"
: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 @@ -12,7 +12,7 @@
[figwheel-sidecar.config-check.ansi :refer [color-text with-color-when]]
[figwheel-sidecar.utils :as utils]))

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

;; 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-SNAPSHOT"
(defproject figwheel "0.5.4"
: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-SNAPSHOT")
(def _figwheel-version_ "0.5.4")

;; exception formatting

Expand Down

0 comments on commit abc2379

Please sign in to comment.