Skip to content

Commit bbf3f6c

Browse files
committed
Revert accidentally-changed namespace-aliases error handling default
1 parent 591d716 commit bbf3f6c

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
## Unreleased
44

5+
## 3.4.2
6+
7+
* [#373](https://github.com/clojure-emacs/refactor-nrepl/issues/373): revert accidentally-changed `namespace-aliases` error handling default.
8+
59
## 3.4.1
610

711
* Offer `refactor-nrepl.ns.libspecs/namespace-aliases-for` function.

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Be aware that this isn't the case if you connect to an already running REPL proc
2626
Add the following, either in your project's `project.clj`, or in the `:user` profile found at `~/.lein/profiles.clj`:
2727

2828
```clojure
29-
:plugins [[refactor-nrepl "3.4.1"]
29+
:plugins [[refactor-nrepl "3.4.2"]
3030
[cider/cider-nrepl "0.28.3"]]
3131
```
3232

@@ -360,12 +360,12 @@ If you want to use `mranderson` while developing locally with the REPL, the sour
360360

361361
When you want to release locally to the following:
362362

363-
PROJECT_VERSION=3.4.1 make install
363+
PROJECT_VERSION=3.4.2 make install
364364

365365
And here's how to deploy to Clojars:
366366

367367
```bash
368-
git tag -a v3.4.1 -m "3.4.1"
368+
git tag -a v3.4.2 -m "3.4.2"
369369
git push --tags
370370
```
371371

src/refactor_nrepl/ns/libspecs.clj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@
143143
include-tentative-aliases? (update :cljs add-tentative-aliases :cljs files ignore-errors?)))))
144144

145145
(defn namespace-aliases-response [{:keys [suggest]}]
146-
(namespace-aliases false
146+
(namespace-aliases true
147147
(core/source-dirs-on-classpath)
148148
suggest))
149149

0 commit comments

Comments
 (0)