8000 Update nREPL and REPL-y by bbatsov · Pull Request #724 · boot-clj/boot · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Update nREPL and REPL-y #724

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Mar 14, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changes

## 2.8.3

#### Improved

- Updated REPL-y to 0.4.3.
- Updated nREPL to 0.5.3.

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
- Updated nREPL to 0.5.3.
- Updated nREPL to 0.6.0.


## 2.8.2

#### Fixed
Expand Down
2 changes: 1 addition & 1 deletion boot/pod/src/boot/repl.clj
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
[boot.from.io.aviso.exception :refer [*fonts*]]))

(def ^:dynamic *default-dependencies*
(atom '[[nrepl/nrepl "0.4.4" :exclusions [[org.clojure/clojure]]]]))
(atom '[[nrepl/nrepl "0.5.3"]]))

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
(atom '[[nrepl/nrepl "0.5.3"]]))
(atom '[[nrepl/nrepl "0.6.0"]]))


(defn ^:private disable-exception-colors
[handler]
Expand Down
2 changes: 1 addition & 1 deletion boot/worker/build.boot
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
:source-paths #{"src" "test"}
:dependencies '[[net.cgrand/parsley "0.9.3" :exclusions [org.clojure/clojure]]
[mvxcvi/puget "1.0.1"]
[reply "0.4.1"]
[reply "0.4.3"]
[cheshire "5.3.1"]
[clj-jgit "0.8.0"]
[clj-yaml "0.4.0"]
Expand Down
2 changes: 1 addition & 1 deletion boot/worker/project.clj
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
;; see https://github.com/boot-clj/boot/issues/82
[net.cgrand/parsley "0.9.3" :exclusions [org.clojure/clojure]]
[mvxcvi/puget "1.0.1"]
[reply "0.4.1"]
[reply "0.4.3"]
[cheshire "5.6.0"]
[clj-jgit "0.8.0"]
[clj-yaml "0.4.0"]
Expand Down
0