Skip to content

Commit

Permalink
release 0.5.17
Browse files Browse the repository at this point in the history
  • Loading branch information
Bruce Hauman committed Oct 24, 2018
1 parent bda2b18 commit c0ef37c
Show file tree
Hide file tree
Showing 10 changed files with 3,588 additions and 2,563 deletions.
8 changes: 8 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
## 0.5.17 new nREPL compatablity

Releasing this to support nREPL changes

* fix how nREPL is required to support the new nrepl codebase
* fix repl eval of namespace
* some updated schmema validations

## 0.5.16 Caching improvements & no trampoline on windows

Daniel Compton did some great work solving the caching issues.
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Figwheel builds your ClojureScript code and hot loads it into the browser as you

There is a new Fighweel in town!

[Figwheel Main](https://github.com/bhauman/figwheel-main) is a
[Figwheel Main](https://figwheel.org) is a
complete re-write of Figwheel and represents the latest and greatest
version of Figwheel. It works great with Leiningen or the new Clojure
CLI Tools.
Expand Down Expand Up @@ -206,7 +206,7 @@ Then include `lein-figwheel` in the `:plugins`
section of your project.clj.

```clojure
[lein-figwheel "0.5.16"]
[lein-figwheel "0.5.17"]
```

#### Configure your builds
Expand Down Expand Up @@ -591,8 +591,8 @@ 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.16"]` and
`[com.bhauman/rebel-readline "0.1.2"]` in your dependencies.
`[figwheel-sidecar "0.5.17"]` and
`[com.bhauman/rebel-readline "0.1.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
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.17-SNAPSHOT"]
[lein-figwheel "0.5.17"]
#_[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.17-SNAPSHOT"]
[figwheel-sidecar "0.5.17"]
[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.17-SNAPSHOT"
(defproject lein-figwheel "0.5.17"
: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.17-SNAPSHOT")
(def _figwheel-version_ "0.5.17")
(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.17-SNAPSHOT"
(defproject figwheel-sidecar "0.5.17"
: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.17-SNAPSHOT"
[figwheel "0.5.17"
:exclusions [org.clojure/tools.reader]]
[hawk "0.2.11" :exclusions [org.clojure/clojure]]

Expand Down
6,117 changes: 3,567 additions & 2,550 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.17-SNAPSHOT")
(def _figwheel-version_ "0.5.17")

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

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

0 comments on commit c0ef37c

Please sign in to comment.