Skip to content

Commit ffa7f49

Browse files
rrudakovbbatsov
authored andcommitted
[#410] Update dependencies to support Clojure 1.12 syntax
1 parent 4a873ca commit ffa7f49

File tree

3 files changed

+18
-12
lines changed

3 files changed

+18
-12
lines changed

CHANGELOG.md

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22

33
## Unreleased
44

5+
* Use `tools.analyzer.jvm` 1.3.2.
6+
* Use `tools.reader` 1.5.1.
7+
* Use `tools.namespace` 1.5.0.
8+
* Use `compliment` 0.7.0.
9+
* Use `orchard` 0.34.3.
10+
511
## 3.10.0
612

713
* Add `always-return-ns-form` option to `clean-ns` message
@@ -47,7 +53,7 @@
4753

4854
## 3.5.5
4955

50-
* [#385](https://github.com/clojure-emacs/refactor-nrepl/pull/385): only `suggest-aliases` that are valid symbols.
56+
* [#385](https://github.com/clojure-emacs/refactor-nrepl/pull/385): only `suggest-aliases` that are valid symbols.
5157
* Fixes an edge case for cljr-refactor.el's `cljr-slash`.
5258

5359
## 3.5.4
@@ -68,7 +74,7 @@
6874

6975
## 3.5.0
7076

71-
* [#374](https://github.com/clojure-emacs/refactor-nrepl/issues/374): support Clojure 1.11's new `:as-alias` namespace directive.
77+
* [#374](https://github.com/clojure-emacs/refactor-nrepl/issues/374): support Clojure 1.11's new `:as-alias` namespace directive.
7278

7379
## 3.4.2
7480

@@ -122,11 +128,11 @@
122128

123129
* [#344](https://github.com/clojure-emacs/refactor-nrepl/issues/344): make clean-ns's style closer to the [how to ns](https://stuartsierra.com/2016/08/27/how-to-ns) style.
124130
* [#333](https://github.com/clojure-emacs/refactor-nrepl/issues/333): skip scanning irrelevant directories in more places (as it was already done for various other functionalities; this limits ananlysis/refactoring to your source/test paths, skipping other artifacts).
125-
* Make `resolve-missing` able to find even more classes than before.
131+
* Make `resolve-missing` able to find even more classes than before.
126132
* [#346](https://github.com/clojure-emacs/refactor-nrepl/issues/346): refine the heuristic for ignoring irrelevant dirs (see the above bullet point).
127133
* Introduce `print-right-margin`/`print-miser-width` configuration options, used during `pprint`ing of ns forms.
128134
* The default is one that is consistent with refactor-nrepl's traditional behavior.
129-
* You can set both to `nil` for disabling line wrapping.
135+
* You can set both to `nil` for disabling line wrapping.
130136
* ns form printing: also wrap single-segment namespaces in a vector.
131137

132138
## 3.0.0 (2021-10-25)

project.clj

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@
77
:license {:name "Eclipse Public License"
88
:url "https://www.eclipse.org/legal/epl-v10.html"}
99
:dependencies [[nrepl "1.0.0"]
10-
^:inline-dep [compliment "0.4.0"]
10+
^:inline-dep [compliment "0.7.0"]
1111
^:inline-dep [http-kit "2.5.0"]
12-
^:inline-dep [org.clojure/data.json "2.4.0"]
13-
^:inline-dep [org.clojure/tools.analyzer.jvm "1.2.3"]
14-
^:inline-dep [org.clojure/tools.namespace "1.4.4" :exclusions [org.clojure/tools.reader]]
15-
^:inline-dep [org.clojure/tools.reader "1.3.6"]
16-
^:inline-dep [cider/orchard "0.21.0"]
12+
^:inline-dep [org.clojure/data.json "2.5.0"]
13+
^:inline-dep [org.clojure/tools.analyzer.jvm "1.3.2"]
14+
^:inline-dep [org.clojure/tools.namespace "1.5.0" :exclusions [org.clojure/tools.reader]]
15+
^:inline-dep [org.clojure/tools.reader "1.5.2"]
16+
^:inline-dep [cider/orchard "0.34.3"]
1717
^:inline-dep [cljfmt "0.9.2" :exclusions [rewrite-clj rewrite-cljs]]
1818
^:inline-dep [clj-commons/fs "1.6.310"]
1919
^:inline-dep [rewrite-clj "1.1.47"]

test/global_test_setup.clj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33

44
(def set-refresh-dirs
55
(try
6-
(require '[refactor-nrepl.inlined-deps.toolsnamespace.v1v4v4.clojure.tools.namespace.repl])
7-
@(resolve 'refactor-nrepl.inlined-deps.toolsnamespace.v1v4v4.clojure.tools.namespace.repl/set-refresh-dirs)
6+
(require '[refactor-nrepl.inlined-deps.toolsnamespace.v1v5v0.clojure.tools.namespace.repl])
7+
@(resolve 'refactor-nrepl.inlined-deps.toolsnamespace.v1v5v0.clojure.tools.namespace.repl/set-refresh-dirs)
88
(catch Exception _
99
(require '[clojure.tools.namespace.repl])
1010
@(resolve 'clojure.tools.namespace.repl/set-refresh-dirs))))

0 commit comments

Comments
 (0)