Skip to content

Commit e5ba9a9

Browse files
committed
3.4.0
1 parent f61ea1a commit e5ba9a9

File tree

3 files changed

+8
-6
lines changed

3 files changed

+8
-6
lines changed

CHANGELOG.md

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

33
## Unreleased
44

5+
## 3.4.0
6+
57
* [#369](https://github.com/clojure-emacs/refactor-nrepl/issues/369): Implement "suggest" option for the `namespace-aliases` op.
68
* This allows end-users to type [Stuart Sierra style](https://stuartsierra.com/2015/05/10/clojure-namespace-aliases) aliases and have them completed, even if this alias wasn't in use anywhere in a given codebase.
79

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ 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.3.2"]
30-
[cider/cider-nrepl "0.25.9"]]
29+
:plugins [[refactor-nrepl "3.4.0"]
30+
[cider/cider-nrepl "0.28.3"]]
3131
```
3232

3333
### Embedded nREPL
@@ -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.3.2 make install
363+
PROJECT_VERSION=3.4.0 make install
364364

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

367367
```bash
368-
git tag -a v3.3.2 -m "3.3.2"
368+
git tag -a v3.4.0 -m "3.4.0"
369369
git push --tags
370370
```
371371

project.clj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@
3434
:unresolved-tree false}
3535
:filespecs [{:type :bytes :path "refactor-nrepl/refactor-nrepl/project.clj" :bytes ~(slurp "project.clj")}]
3636
:profiles {;; Clojure versions matrix
37-
:provided {:dependencies [[cider/cider-nrepl "0.27.2"]
38-
[org.clojure/clojure "1.9.0"]
37+
:provided {:dependencies [[cider/cider-nrepl "0.28.3"]
38+
[org.clojure/clojure "1.10.3"]
3939
;; For satisfying `:pedantic?`:
4040
[com.google.code.findbugs/jsr305 "3.0.2"]
4141
[com.google.errorprone/error_prone_annotations "2.1.3"]]}

0 commit comments

Comments
 (0)