Skip to content

Commit

Permalink
3.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
vemv committed Mar 5, 2022
1 parent d32c6ca commit b5fff97
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 6 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

## Unreleased

## 3.4.0

* [#369](https://github.com/clojure-emacs/refactor-nrepl/issues/369): Implement "suggest" option for the `namespace-aliases` op.
* 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.

Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ 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.3.2"]
[cider/cider-nrepl "0.25.9"]]
:plugins [[refactor-nrepl "3.4.0"]
[cider/cider-nrepl "0.28.3"]]
```

### Embedded nREPL
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.3.2 make install
PROJECT_VERSION=3.4.0 make install

And here's how to deploy to Clojars:

```bash
git tag -a v3.3.2 -m "3.3.2"
git tag -a v3.4.0 -m "3.4.0"
git push --tags
```

Expand Down
4 changes: 2 additions & 2 deletions project.clj
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@
:unresolved-tree false}
:filespecs [{:type :bytes :path "refactor-nrepl/refactor-nrepl/project.clj" :bytes ~(slurp "project.clj")}]
:profiles {;; Clojure versions matrix
:provided {:dependencies [[cider/cider-nrepl "0.27.2"]
[org.clojure/clojure "1.9.0"]
:provided {:dependencies [[cider/cider-nrepl "0.28.3"]
[org.clojure/clojure "1.10.3"]
;; For satisfying `:pedantic?`:
[com.google.code.findbugs/jsr305 "3.0.2"]
[com.google.errorprone/error_prone_annotations "2.1.3"]]}
Expand Down

0 comments on commit b5fff97

Please sign in to comment.