Skip to content

Commit d290bc4

Browse files
Merge pull request #197 from clojure-emacs/fix-169
[Fix #169] Fix java9 compatibility
2 parents 992e9a2 + dc85d78 commit d290bc4

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,10 @@
1212
* [clojure-emacs/clj-refactor.el#330](https://github.com/clojure-emacs/clj-refactor.el/issues/330) `clean-ns` ignores namespaced keywords.
1313
* [#160](https://github.com/clojure-emacs/refactor-nrepl/issues/160) Make `resolve-missing` find newly defined vars and types (clj). Because of a stale cache, newly added vars or types would not be found. This fix takes into account vars/types added by eval-ing code (rescan affected namespace), and by hotloading dependencies (reset the cache).
1414

15+
### Changes
16+
17+
* [#169](https://github.com/clojure-emacs/refactor-nrepl/issues/169) Fix java9 compatibility issues.
18+
1519
### New features
1620

1721
* New config setting `:libspec-whitelist` which makes it possible to create a seq of namespaces `clean-ns` shouldn't prune. This is useful for libspecs which aren't used except through side-effecting loads.

project.clj

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
:dependencies [[org.clojure/tools.nrepl "0.2.12"]
77
^:source-dep [http-kit "2.1.19"]
88
^:source-dep [cheshire "5.4.0"]
9-
^:source-dep [alembic "0.3.2"]
9+
^:source-dep [clojure-emacs/alembic "0.3.3"]
1010
^:source-dep [org.clojure/tools.analyzer.jvm "0.6.9"]
1111
^:source-dep [org.clojure/tools.namespace "0.3.0-alpha3"]
1212
^:source-dep [org.clojure/tools.reader "1.0.0-beta4"]

0 commit comments

Comments
 (0)