-
Notifications
You must be signed in to change notification settings - Fork 1.6k
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
Update nREPL to 0.4.3 #2444
Update nREPL to 0.4.3 #2444
Conversation
nREPL was recently moved out of clojure-contrib and its development continued under a dedicated org (https://github.com/nrepl). The new project is (and will remain to be) completely backwards compatible on the nREPL API level, but the namespace had to be changed. This fixes technomancy#2434.
See also boot-clj/boot#703 |
I've also created one simple plugin, so people can easily use nREPL 0.4, while waiting for this to be merged. (https://github.com/nrepl/lein-nrepl) |
@@ -54,7 +54,7 @@ | |||
org.apache.maven/maven-resolver-provider "3.5.0" | |||
org.clojure/data.xml "0.0.8" | |||
org.clojure/tools.macro "0.1.5" | |||
org.clojure/tools.nrepl "0.2.12" | |||
nrepl "0.4.1g" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@bbatsov a typo
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fixed.
I've updated the PR to nREPL 0.4.3. |
Looks good; thanks. |
🙇 |
As no one really commented on #2434 I've decided to try an alternative approach. Here's my preferred (quick) solution to the migration to the new nREPL. I know this is probably less than ideal, but it's a one time deal, and I'd really appreciate your support as I rather be dealing with nREPL improvements than with migration paths.
nREPL was recently moved out of clojure-contrib and its development
continued under a dedicated org (https://github.com/nrepl). The new project is (and will remain
to be) completely backwards compatible on the nREPL API level, but
the namespace had to be changed.
This fixes #2434.