Skip to content

Commit 4bd7139

Browse files
committed
3.3.1
1 parent 8a0042a commit 4bd7139

File tree

2 files changed

+9
-5
lines changed

2 files changed

+9
-5
lines changed

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,11 @@
22

33
## Unreleased
44

5-
## 3.3.0
5+
## 3.3.1
6+
7+
* [#363](https://github.com/clojure-emacs/refactor-nrepl/issues/363): Fix a memoization bug in `clean-namespace`.
8+
9+
## 3.3.1
610

711
* [#361](https://github.com/clojure-emacs/refactor-nrepl/pull/361) Honor clj-kondo `:unused-namespace` config, if present
812
* This piece of config can inform/complement refactor-nrepl's own config.

README.md

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

2727
```clojure
28-
:plugins [[refactor-nrepl "3.3.0"]
28+
:plugins [[refactor-nrepl "3.3.1"]
2929
[cider/cider-nrepl "0.25.9"]]
3030
```
3131

@@ -37,7 +37,7 @@ Add the following in `~/.boot/profile.boot`:
3737
(require 'boot.repl)
3838

3939
(swap! boot.repl/*default-dependencies* conj
40-
'[refactor-nrepl "3.3.0"]
40+
'[refactor-nrepl "3.3.1"]
4141
'[cider/cider-nrepl "0.25.9"])
4242

4343
(swap! boot.repl/*default-middleware* conj
@@ -371,12 +371,12 @@ If you want to use `mranderson` while developing locally with the REPL, the sour
371371

372372
When you want to release locally to the following:
373373

374-
PROJECT_VERSION=3.3.0 make install
374+
PROJECT_VERSION=3.3.1 make install
375375

376376
And here's how to deploy to Clojars:
377377

378378
```bash
379-
git tag -a v3.3.0 -m "3.3.0"
379+
git tag -a v3.3.1 -m "3.3.1"
380380
git push --tags
381381
```
382382

0 commit comments

Comments
 (0)