Skip to content

Commit 8a4d05d

Browse files
committed
Release 3.11
1 parent a518aaf commit 8a4d05d

File tree

3 files changed

+9
-7
lines changed

3 files changed

+9
-7
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.11.0
6+
57
* Use `tools.analyzer.jvm` 1.3.2.
68
* Use `tools.reader` 1.5.1.
79
* Use `tools.namespace` 1.5.0.

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ deploy: check-env .inline-deps
4141
jar: .inline-deps
4242
lein with-profile -user,-dev,+$(VERSION),+plugin.mranderson/config jar
4343

44-
# Usage: PROJECT_VERSION=3.10.0 make install
44+
# Usage: PROJECT_VERSION=3.11.0 make install
4545
# PROJECT_VERSION is needed because it's not computed dynamically
4646
install: check-install-env .inline-deps
4747
LEIN_JVM_OPTS="-Dmranderson.internal.no-parallelism=true" lein with-profile -user,-dev,+$(VERSION),+plugin.mranderson/config install

README.md

Lines changed: 6 additions & 6 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.10.0"]
29+
:plugins [[refactor-nrepl "3.11.0"]
3030
[cider/cider-nrepl "0.31.0"]]
3131
```
3232

@@ -41,7 +41,7 @@ For that, you can use the following (more info can be found in the [nREPL Server
4141
"We build our own custom nrepl handler, mimicking CIDER's."
4242
(apply nrepl-server/default-handler
4343
(conj cider.nrepl.middleware/cider-middleware 'refactor-nrepl.middleware/wrap-refactor)))
44-
44+
4545
(nrepl-server/start-server :port port :address bind-address :handler custom-nrepl-handler)
4646
```
4747

@@ -92,7 +92,7 @@ Configuration settings are passed along with each msg, currently the recognized
9292
;; but it also needs that `:ignore-paths` is correctly set, that all namespaces are valid,
9393
;; that tools.analyzer is able to analyze all of them, etc
9494
:ignore-errors true
95-
95+
9696
;; When true `clean-ns` will remove unused symbols, otherwise just
9797
;; sort etc
9898
:prune-ns-form true
@@ -326,7 +326,7 @@ project. The reply looks like this:
326326
The list of suggestions is sorted by frequency in decreasing order, so the first element is always the best suggestion.
327327

328328
This op accepts a `:suggest` option, default falsey. If truthy, it will also include suggested aliases, following [Sierra's convention](https://stuartsierra.com/2015/05/10/clojure-namespace-aliases),
329-
for existing files that haven't been aliased yet.
329+
for existing files that haven't been aliased yet.
330330

331331
### find-used-publics
332332

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

370370
When you want to release locally to the following:
371371

372-
PROJECT_VERSION=3.5.3 make install
372+
PROJECT_VERSION=1.2.3 make install
373373

374374
And here's how to deploy to Clojars:
375375

376376
```bash
377-
git tag -a v3.10.0 -m "3.10.0"
377+
git tag -a v1.2.3 -m "1.2.3"
378378
git push --tags
379379
```
380380

0 commit comments

Comments
 (0)