Skip to content

Commit

Permalink
releasing 0.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Bruce Hauman committed Mar 23, 2016
1 parent 0aac065 commit bb32c89
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 13 deletions.
6 changes: 6 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## 0.5.1 Configuration Validation

* added a fairly comprehensive configuration validation that is triggered
when running 'lein figwheel' - there is a large surface area here so if
you discover problems please report them

## 0.5.0-5 More work on system dependency conflicts

* adding system asserts to ensure and warn if not using Java 1.8 or Clojure 1.7.0
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -165,14 +165,14 @@ Then include the following `:dependencies` in your `project.clj` file.

```clojure
[org.clojure/clojure "1.7.0"]
[org.clojure/clojurescript "1.7.170"]
[org.clojure/clojurescript "1.7.228"]
```

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

```clojure
[lein-figwheel "0.5.0-6"]
[lein-figwheel "0.5.1"]
```

#### Configure your builds
Expand Down Expand Up @@ -509,7 +509,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.0-4"]` in your dependencies.
`[figwheel-sidecar "0.5.1"]` 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
4 changes: 2 additions & 2 deletions example/project.clj
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

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

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

:profiles { :dev { :dependencies [[com.cemerick/piggieback "0.2.1"]
[figwheel-sidecar "0.5.1-SNAPSHOT"]
[figwheel-sidecar "0.5.1"]
[org.clojure/tools.namespace "0.2.11"]
[org.clojure/tools.nrepl "0.2.12"]
[leiningen-core "2.5.2"]]
Expand Down
6 changes: 3 additions & 3 deletions plugin/project.clj
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
(defproject lein-figwheel "0.5.1-SNAPSHOT"
(defproject lein-figwheel "0.5.1"
: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"
:url "http://www.eclipse.org/legal/epl-v10.html"}

:dependencies [[figwheel-sidecar "0.5.1-SNAPSHOT"]
[figwheel "0.5.1-SNAPSHOT"]]
:dependencies [[figwheel-sidecar "0.5.1"]
[figwheel "0.5.1"]]

:scm { :name "git"
:url "https://github.com/bhauman/lein-figwheel"
Expand Down
6 changes: 3 additions & 3 deletions sidecar/project.clj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(defproject figwheel-sidecar "0.5.1-SNAPSHOT"
(defproject figwheel-sidecar "0.5.1"
: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 @@ -8,7 +8,7 @@
:dir ".."}
:dependencies
[[org.clojure/clojure "1.7.0"]
[org.clojure/clojurescript "1.7.170"
[org.clojure/clojurescript "1.7.228"
:exclusions [org.apache.ant/ant]]
[org.clojure/core.async "0.2.374"
:exclusions [org.clojure/tools.reader]]
Expand All @@ -19,7 +19,7 @@
[compojure "1.4.0" :exclusions [org.clojure/clojure]]
[clj-stacktrace "0.2.8"]
[digest "1.4.4" :exclusions [org.clojure/clojure]]
[figwheel "0.5.1-SNAPSHOT"
[figwheel "0.5.1"
:exclusions [org.clojure/tools.reader]]
[hawk "0.2.9" :exclusions [org.clojure/clojure]]

Expand Down
4 changes: 2 additions & 2 deletions support/project.clj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(defproject figwheel "0.5.1-SNAPSHOT"
(defproject figwheel "0.5.1"
: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 All @@ -8,7 +8,7 @@
:dir ".."}
:dependencies
[[org.clojure/clojure "1.7.0"]
[org.clojure/clojurescript "1.7.170"
[org.clojure/clojurescript "1.7.228"
:exclusions [org.apache.ant/ant]]
[org.clojure/core.async "0.2.374"
:exclusions [org.clojure/tools.reader]]])

0 comments on commit bb32c89

Please sign in to comment.