Skip to content

Commit

Permalink
release 0.2.13
Browse files Browse the repository at this point in the history
  • Loading branch information
Bruce Hauman committed Apr 11, 2021
1 parent c92d2b7 commit 2c5ba26
Show file tree
Hide file tree
Showing 20 changed files with 43 additions and 42 deletions.
3 changes: 2 additions & 1 deletion CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
# 0.2.13-SNAPSHOT
# 0.2.13

* webpack 5 compatibility by adding --entry flag to npx webpack command
* upgrade to ring 1.9.1, there was an internal api and a jetty server
version change in ring 1.9.0 that requires an upgrade
* fix logging errors caused by CLJS 1.10.844

# 0.2.12 Fix webpack-cli

Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ On Mac OSX with brew:
Now launch a ClojureScript REPL with:

```
clj -Sdeps "{:deps {com.bhauman/figwheel-main {:mvn/version \"0.2.12\"}}}" -m figwheel.main
clj -Sdeps "{:deps {com.bhauman/figwheel-main {:mvn/version \"0.2.13\"}}}" -m figwheel.main
```

This will first compile browser REPL code to a temp directory, and
Expand All @@ -224,7 +224,7 @@ available. So, you can get Rebel Readline behavior by simply adding it
to your dependencies.

```
clojure -Sdeps "{:deps {com.bhauman/figwheel-main {:mvn/version \"0.2.12\"} com.bhauman/rebel-readline-cljs {:mvn/version \"0.1.4\"}}}}" -m figwheel.main
clojure -Sdeps "{:deps {com.bhauman/figwheel-main {:mvn/version \"0.2.13\"} com.bhauman/rebel-readline-cljs {:mvn/version \"0.1.4\"}}}}" -m figwheel.main
```

As of right now using Rebel readline does create some startup overhead
Expand All @@ -245,7 +245,7 @@ directory of your project.
Ensure your `deps.edn` file has the `figwheel.main` dependencies:

```clojure
{:deps {com.bhauman/figwheel-main {:mvn/version "0.2.12"}
{:deps {com.bhauman/figwheel-main {:mvn/version "0.2.13"}
com.bhauman/rebel-readline-cljs {:mvn/version "0.1.4"}}
;; setup some development paths
:paths ["src" "target" "resources"]
Expand Down Expand Up @@ -311,7 +311,7 @@ directory of your project.
Ensure your `project.clj` file has `figwheel.main` dependencies:

```clojure
:dependencies [[com.bhauman/figwheel-main "0.2.12"]
:dependencies [[com.bhauman/figwheel-main "0.2.13"]
[com.bhauman/rebel-readline-cljs "0.1.4"]]
;; setup target as a resource path
:resource-paths ["target" "resources"]
Expand Down Expand Up @@ -449,7 +449,7 @@ ClojureScript searches for source files on the Classpath. When you add
a `re-frame` dependency like so:

```clojure
{:deps {com.bhauman/figwheel-main {:mvn/version "0.2.12"}
{:deps {com.bhauman/figwheel-main {:mvn/version "0.2.13"}
com.bhauman/rebel-readline-cljs {:mvn/version "0.1.4"}
;; adding re-frame
re-frame {:mvn/version "1.10.5"}}
Expand Down
4 changes: 2 additions & 2 deletions deps.edn
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
;; DEV for now its easier to use cider with top level deps
;; com.bhauman/figwheel-core {:local/root "/Users/bhauman/workspace/figwheel/figwheel-core"}
;; com.bhauman/figwheel-repl {:local/root "/Users/bhauman/workspace/figwheel/figwheel-repl"}
com.bhauman/figwheel-repl {:mvn/version "0.2.13-SNAPSHOT"}
com.bhauman/figwheel-core {:mvn/version "0.2.13-SNAPSHOT"}
com.bhauman/figwheel-repl {:mvn/version "0.2.13"}
com.bhauman/figwheel-core {:mvn/version "0.2.13"}

;; server
ring/ring {:mvn/version "1.9.1"}
Expand Down
10 changes: 5 additions & 5 deletions docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ On Mac OSX with brew:
Now launch a ClojureScript REPL with:

```
clj -Sdeps "{:deps {com.bhauman/figwheel-main {:mvn/version \"0.2.12\"}}}" -m figwheel.main
clj -Sdeps "{:deps {com.bhauman/figwheel-main {:mvn/version \"0.2.13\"}}}" -m figwheel.main
```

This will first compile browser REPL code to a temp directory, and
Expand All @@ -224,7 +224,7 @@ available. So, you can get Rebel Readline behavior by simply adding it
to your dependencies.

```
clojure -Sdeps "{:deps {com.bhauman/figwheel-main {:mvn/version \"0.2.12\"} com.bhauman/rebel-readline-cljs {:mvn/version \"0.1.4\"}}}}" -m figwheel.main
clojure -Sdeps "{:deps {com.bhauman/figwheel-main {:mvn/version \"0.2.13\"} com.bhauman/rebel-readline-cljs {:mvn/version \"0.1.4\"}}}}" -m figwheel.main
```

As of right now using Rebel readline does create some startup overhead
Expand All @@ -245,7 +245,7 @@ directory of your project.
Ensure your `deps.edn` file has the `figwheel.main` dependencies:

```clojure
{:deps {com.bhauman/figwheel-main {:mvn/version "0.2.12"}
{:deps {com.bhauman/figwheel-main {:mvn/version "0.2.13"}
com.bhauman/rebel-readline-cljs {:mvn/version "0.1.4"}}
;; setup some development paths
:paths ["src" "target" "resources"]
Expand Down Expand Up @@ -311,7 +311,7 @@ directory of your project.
Ensure your `project.clj` file has `figwheel.main` dependencies:

```clojure
:dependencies [[com.bhauman/figwheel-main "0.2.12"]
:dependencies [[com.bhauman/figwheel-main "0.2.13"]
[com.bhauman/rebel-readline-cljs "0.1.4"]]
;; setup target as a resource path
:resource-paths ["target" "resources"]
Expand Down Expand Up @@ -449,7 +449,7 @@ ClojureScript searches for source files on the Classpath. When you add
a `re-frame` dependency like so:

```clojure
{:deps {com.bhauman/figwheel-main {:mvn/version "0.2.12"}
{:deps {com.bhauman/figwheel-main {:mvn/version "0.2.13"}
com.bhauman/rebel-readline-cljs {:mvn/version "0.1.4"}
;; adding re-frame
re-frame {:mvn/version "1.10.5"}}
Expand Down
6 changes: 3 additions & 3 deletions docs/docs/classpaths.md
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ Let's add the `cljs-src` path to our classpath with CLI Tools. In your
```clojure
{:deps {org.clojure/clojure {:mvn/version "1.9.0"}
org.clojure/clojurescript {:mvn/version "1.10.773"}
com.bhauman/figwheel-main {:mvn/version "0.2.12"}
com.bhauman/figwheel-main {:mvn/version "0.2.13"}
com.bhauman/rebel-readline-cljs {:mvn/version "0.1.4"}}
:aliases {:fig {:main-opts ["-m" "figwheel.main"]}}
;; define paths here
Expand Down Expand Up @@ -256,7 +256,7 @@ Edit `deps.edn`:
```clojure
{:deps {org.clojure/clojure {:mvn/version "1.9.0"}
org.clojure/clojurescript {:mvn/version "1.10.773"}
com.bhauman/figwheel-main {:mvn/version "0.2.12"}
com.bhauman/figwheel-main {:mvn/version "0.2.13"}
com.bhauman/rebel-readline-cljs {:mvn/version "0.1.4"}
:aliases {:fig {:main-opts ["-m" "figwheel.main"]}
;; add "resources" path here
Expand Down Expand Up @@ -383,7 +383,7 @@ This is just a simple matter as we just need to add `"target"` to the
```clojure
{:deps {org.clojure/clojure {:mvn/version "1.9.0"}
org.clojure/clojurescript {:mvn/version "1.10.773"}
com.bhauman/figwheel-main {:mvn/version "0.2.12"}
com.bhauman/figwheel-main {:mvn/version "0.2.13"}
com.bhauman/rebel-readline-cljs {:mvn/version "0.1.4"}
:aliases {:fig {:main-opts ["-m" "figwheel.main"]}
;; add "target" path here
Expand Down
2 changes: 1 addition & 1 deletion docs/docs/code_splitting.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ touch deps.edn
Edit this script to look like the following:

```clojure
{:deps {com.bhauman/figwheel-main {:mvn/version "0.2.12"}}
{:deps {com.bhauman/figwheel-main {:mvn/version "0.2.13"}}
:paths ["src" "resources" "target"]}
```

Expand Down
4 changes: 2 additions & 2 deletions docs/docs/create_a_build.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ The contents of the `deps.edn` file should be:
```clojure
{:deps {org.clojure/clojure {:mvn/version "1.9.0"}
org.clojure/clojurescript {:mvn/version "1.10.773"}
com.bhauman/figwheel-main {:mvn/version "0.2.12"}
com.bhauman/figwheel-main {:mvn/version "0.2.13"}
com.bhauman/rebel-readline-cljs {:mvn/version "0.1.4"}}
:aliases {:fig {:main-opts ["-m" "figwheel.main"]}}
:paths ["src" "resources" "target"]}
Expand All @@ -57,7 +57,7 @@ If you're using Leiningen your `project.clj` should be:
:profiles
{:dev
{:dependencies [[org.clojure/clojurescript "1.10.773"]
[com.bhauman/figwheel-main "0.2.12"]
[com.bhauman/figwheel-main "0.2.13"]
;; optional but recommended
[com.bhauman/rebel-readline-cljs "0.1.4"]]
:resource-paths ["target"]
Expand Down
2 changes: 1 addition & 1 deletion docs/docs/emacs.md
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ would look like this:
```clojure
{:deps {org.clojure/clojure {:mvn/version "1.9.0"}
org.clojure/clojurescript {:mvn/version "1.10.773"}
com.bhauman/figwheel-main {:mvn/version "0.2.12"}}
com.bhauman/figwheel-main {:mvn/version "0.2.13"}}
:paths ["src" "resources" "target"]}
```

Expand Down
6 changes: 3 additions & 3 deletions docs/docs/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ As a concrete example, in the root directory of your project place a
:profiles
{:dev
{:dependencies [[org.clojure/clojurescript "1.10.773"]
[com.bhauman/figwheel-main "0.2.12"]
[com.bhauman/figwheel-main "0.2.13"]
;; optional but recommended
[com.bhauman/rebel-readline-cljs "0.1.4"]]}})
```
Expand Down Expand Up @@ -196,7 +196,7 @@ following contents:
```clojure
{:deps {org.clojure/clojure {:mvn/version "1.9.0"}
org.clojure/clojurescript {:mvn/version "1.10.773"}
com.bhauman/figwheel-main {:mvn/version "0.2.12"}
com.bhauman/figwheel-main {:mvn/version "0.2.13"}
;; optional but recommended
com.bhauman/rebel-readline-cljs {:mvn/version "0.1.4"}}}
```
Expand Down Expand Up @@ -282,7 +282,7 @@ to launch a REPL with `figwheel.main`.
```clojure
{:deps {org.clojure/clojure {:mvn/version "1.9.0"}
org.clojure/clojurescript {:mvn/version "1.10.773"}
com.bhauman/figwheel-main {:mvn/version "0.2.12"}
com.bhauman/figwheel-main {:mvn/version "0.2.13"}
;; optional but recommended
com.bhauman/rebel-readline-cljs {:mvn/version "0.1.4"}}
:aliases {:fig {:main-opts ["-m" "figwheel.main"]}}}
Expand Down
2 changes: 1 addition & 1 deletion docs/docs/jetty_conflicts.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ In your `deps.edn` this would look like this:

```clojure
{:deps {org.clojure/clojurescript {:mvn/version "1.10.773"}
com.bhauman/figwheel-main {:mvn/version "0.2.12"}
com.bhauman/figwheel-main {:mvn/version "0.2.13"}
com.datomic/client-cloud {:mvn/version "0.8.71"}

;; directly specify all jetty dependencies
Expand Down
2 changes: 1 addition & 1 deletion docs/docs/nodejs.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ And a `deps.edn` as well.
```clojure
{:deps {org.clojure/clojurescript {:mvn/version "1.10.773"}
com.bhauman/rebel-readline-cljs {:mvn/version "0.1.4"}
com.bhauman/figwheel-main {:mvn/version "0.2.12"}}}
com.bhauman/figwheel-main {:mvn/version "0.2.13"}}}
```

Now that we've created our three basic files let's start up a
Expand Down
2 changes: 1 addition & 1 deletion docs/docs/react-native.md
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ Create a `deps.edn` file in the `MyAwesomeProject` directory:

```clojure
{:deps {org.clojure/clojurescript {:mvn/version "1.10.773"}
com.bhauman/figwheel-main {:mvn/version "0.2.12"}}
com.bhauman/figwheel-main {:mvn/version "0.2.13"}}
:paths ["src" "target"]}
```

Expand Down
4 changes: 2 additions & 2 deletions docs/docs/vim.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ Place the following in `project.clj`:
:plugins [[cider/cider-nrepl "0.24.0"]]
:profiles {:dev
{:dependencies [[org.clojure/clojurescript "1.10.773"]
[com.bhauman/figwheel-main "0.2.12"]
[com.bhauman/figwheel-main "0.2.13"]
[cider/piggieback "0.4.2"]]
:resource-paths ["target"]
:clean-targets ^{:protect false} ["target"]
Expand Down Expand Up @@ -199,7 +199,7 @@ So here's a minimal `deps.edn` (analogous to the previous `project.clj`):
:deps
{org.clojure/clojure {:mvn/version "1.9.0"}
org.clojure/clojurescript {:mvn/version "1.10.773"}
com.bhauman/figwheel-main {:mvn/version "0.2.12"}
com.bhauman/figwheel-main {:mvn/version "0.2.13"}
com.bhauman/rebel-readline {:mvn/version "0.1.4"}
com.bhauman/rebel-readline-cljs {:mvn/version "0.1.4"}
org.clojure/tools.nrepl {:mvn/version "0.2.13"}
Expand Down
8 changes: 4 additions & 4 deletions docs/tutorial.md
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ So in our new `hello-cljs` directory, we'll create a `deps.edn` file with
the following contents:

```clojure
{:deps {com.bhauman/figwheel-main {:mvn/version "0.2.12"}}}
{:deps {com.bhauman/figwheel-main {:mvn/version "0.2.13"}}}
```

## Starting a ClojureScript REPL
Expand Down Expand Up @@ -161,7 +161,7 @@ To use Rebel Readline let's add `com.bhauman/rebel-readline-cljs
0.1.4` as another dependency in the `deps.edn` file:

```clojure
{:deps {com.bhauman/figwheel-main {:mvn/version "0.2.12"}
{:deps {com.bhauman/figwheel-main {:mvn/version "0.2.13"}
com.bhauman/rebel-readline-cljs {:mvn/version "0.1.4"}}}
```

Expand Down Expand Up @@ -629,7 +629,7 @@ We can fix this classpath warning by adding both `"src"` and
`"target"` to the `:paths` key in our `deps.edn` file:

```clojure
{:deps {com.bhauman/figwheel-main {:mvn/version "0.2.12"}
{:deps {com.bhauman/figwheel-main {:mvn/version "0.2.13"}
com.bhauman/rebel-readline-cljs {:mvn/version "0.1.4"}}
:paths ["src" "target"]}
```
Expand Down Expand Up @@ -1078,7 +1078,7 @@ to the `:paths` key in you `deps.edn` file. When you finish the file
should look like this:

```clojure
{:deps {com.bhauman/figwheel-main {:mvn/version "0.2.12"}
{:deps {com.bhauman/figwheel-main {:mvn/version "0.2.13"}
com.bhauman/rebel-readline-cljs {:mvn/version "0.1.4"}}
:paths ["src" "target" "resources"]}
```
Expand Down
2 changes: 1 addition & 1 deletion helper-content/creating_a_build_cli_tools.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ a `deps.edn` file in the directory that you launched this REPL from.
If don't have a `deps.edn` file let's create one now:

```clojure
{:deps {com.bhauman/figwheel-main {:mvn/version "0.2.12"}
{:deps {com.bhauman/figwheel-main {:mvn/version "0.2.13"}
;; add rebel-readline for advanced REPL readline editing
com.bhauman/rebel-readline-cljs {:mvn/version "0.1.4"}}
:paths ["src" "target" "resources"]}
Expand Down
2 changes: 1 addition & 1 deletion helper-content/creating_a_build_lein.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ If don't have a `project.clj` file let's create one now:
```clojure
(defproject lein-main "0.1.0-SNAPSHOT"
:profiles {:dev {:dependencies
[[com.bhauman/figwheel-main "0.2.12"]
[[com.bhauman/figwheel-main "0.2.13"]
[com.bhauman/rebel-readline-cljs "0.1.4"]]}}
:aliases {"fig" ["trampoline" "run" "-m" "figwheel.main"]})
```
Expand Down
Loading

0 comments on commit 2c5ba26

Please sign in to comment.