Skip to content

Commit

Permalink
Merge pull request #375 from clojure-emacs/373
Browse files Browse the repository at this point in the history
Revert accidentally-changed `namespace-aliases` error handling default
  • Loading branch information
vemv authored Mar 14, 2022
2 parents 591d716 + bbf3f6c commit 863e038
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

## Unreleased

## 3.4.2

* [#373](https://github.com/clojure-emacs/refactor-nrepl/issues/373): revert accidentally-changed `namespace-aliases` error handling default.

## 3.4.1

* Offer `refactor-nrepl.ns.libspecs/namespace-aliases-for` function.
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ Be aware that this isn't the case if you connect to an already running REPL proc
Add the following, either in your project's `project.clj`, or in the `:user` profile found at `~/.lein/profiles.clj`:

```clojure
:plugins [[refactor-nrepl "3.4.1"]
:plugins [[refactor-nrepl "3.4.2"]
[cider/cider-nrepl "0.28.3"]]
```

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

When you want to release locally to the following:

PROJECT_VERSION=3.4.1 make install
PROJECT_VERSION=3.4.2 make install

And here's how to deploy to Clojars:

```bash
git tag -a v3.4.1 -m "3.4.1"
git tag -a v3.4.2 -m "3.4.2"
git push --tags
```

Expand Down
2 changes: 1 addition & 1 deletion src/refactor_nrepl/ns/libspecs.clj
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@
include-tentative-aliases? (update :cljs add-tentative-aliases :cljs files ignore-errors?)))))

(defn namespace-aliases-response [{:keys [suggest]}]
(namespace-aliases false
(namespace-aliases true
(core/source-dirs-on-classpath)
suggest))

Expand Down

0 comments on commit 863e038

Please sign in to comment.