Skip to content

Commit dc85d78

Browse files
[Fix #169] Fix java9 compatibility
by using forked `alembic` with an updated dynapath dependency
1 parent 992e9a2 commit dc85d78

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
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

Lines changed: 1 addition & 1 deletion
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)