Skip to content

Commit 7dd2ce1

Browse files
committed
Update to piggieback 0.4.0
1 parent 8f8d7de commit 7dd2ce1

File tree

2 files changed

+8
-9
lines changed

2 files changed

+8
-9
lines changed

cider.el

+2-2
Original file line numberDiff line numberDiff line change
@@ -383,7 +383,7 @@ Throws an error if PROJECT-TYPE is unknown."
383383
"List of dependencies where elements are lists of artifact name and version.
384384
Added to `cider-jack-in-dependencies' when doing `cider-jack-in-cljs'.")
385385
(put 'cider-jack-in-cljs-dependencies 'risky-local-variable t)
386-
(cider-add-to-alist 'cider-jack-in-cljs-dependencies "cider/piggieback" "0.3.10")
386+
(cider-add-to-alist 'cider-jack-in-cljs-dependencies "cider/piggieback" "0.4.0")
387387

388388
(defvar cider-jack-in-dependencies-exclusions nil
389389
"List of exclusions for jack in dependencies.
@@ -655,7 +655,7 @@ Generally you should not disable this unless you run into some faulty check."
655655
(defun cider-verify-piggieback-is-present ()
656656
"Check whether the piggieback middleware is present."
657657
(unless (cider-library-present-p "cider/piggieback")
658-
(user-error "Piggieback 0.3.x (aka cider/piggieback) is not available. See https://docs.cider.mx/en/latest/clojurescript for details")))
658+
(user-error "Piggieback 0.4.x (aka cider/piggieback) is not available. See https://docs.cider.mx/en/latest/clojurescript for details")))
659659

660660
(defun cider-check-nashorn-requirements ()
661661
"Check whether we can start a Nashorn ClojureScript REPL."

doc/clojurescript.md

+6-7
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ project):
3333

3434
```clojure
3535
;; use whatever are the most recent versions here
36-
[cider/piggieback "0.3.10"]
36+
[cider/piggieback "0.4.0"]
3737
[org.clojure/clojure "1.9.0"]
3838
```
3939

@@ -157,7 +157,7 @@ documentation lookup, the namespace browser, and macroexpansion).
157157
[adzerk/boot-cljs-repl "X.Y.Z" :scope "test"]
158158
[pandeiro/boot-http "X.Y.Z" :scope "test"]
159159
[weasel "0.7.0" :scope "test"]
160-
[cider/piggieback "0.3.10" :scope "test"] ; not needed for cider-jack-in-cljs
160+
[cider/piggieback "0.4.0" :scope "test"] ; not needed for cider-jack-in-cljs
161161
```
162162

163163
and this at the end of `build.boot`:
@@ -199,14 +199,13 @@ You can also use [Figwheel](https://github.com/bhauman/lein-figwheel) with CIDER
199199
2. Add these to your dev `:dependencies`:
200200

201201
```clojure
202-
[cider/piggieback "0.3.10"] ; not needed for cider-jack-in-cljs
203-
[figwheel-sidecar "0.5.16"] ; use here whatever the current version of figwheel is
202+
[cider/piggieback "0.4.0"] ; not needed for cider-jack-in-cljs
203+
[figwheel-sidecar "0.5.19"] ; use here whatever the current version of figwheel is
204204
```
205205

206206
!!! Warning
207207

208-
Keep in mind that figwheel 0.5.16 is the first to support piggieback
209-
0.3. CIDER does not support older versions of Piggieback.
208+
Keep in mind that CIDER does not support versions versions of Piggieback older than 0.4. Make sure that you use a compatible version of Figwheel.
210209

211210
3. Add this to your dev `:repl-options` (not needed for `cider-jack-in-cljs`):
212211

@@ -234,7 +233,7 @@ You can also use [Figwheel-main](https://github.com/bhauman/figwheel-main) with
234233
1. Add this to your dev `:dependencies` (not needed for `cider-jack-in-cljs`):
235234

236235
```clojure
237-
[cider/piggieback "0.3.10"]
236+
[cider/piggieback "0.4.0"]
238237
```
239238

240239
2. Add this to your dev `:repl-options` (not needed for `cider-jack-in-cljs`):

0 commit comments

Comments
 (0)