Skip to content

Commit

Permalink
[Fix #169] Fix java9 compatibility
Browse files Browse the repository at this point in the history
by using forked `alembic` with an updated dynapath dependency
  • Loading branch information
benedekfazekas committed May 1, 2017
1 parent 992e9a2 commit dc85d78
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,10 @@
* [clojure-emacs/clj-refactor.el#330](https://github.com/clojure-emacs/clj-refactor.el/issues/330) `clean-ns` ignores namespaced keywords.
* [#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).

### Changes

* [#169](https://github.com/clojure-emacs/refactor-nrepl/issues/169) Fix java9 compatibility issues.

### New features

* 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.
Expand Down
2 changes: 1 addition & 1 deletion project.clj
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
:dependencies [[org.clojure/tools.nrepl "0.2.12"]
^:source-dep [http-kit "2.1.19"]
^:source-dep [cheshire "5.4.0"]
^:source-dep [alembic "0.3.2"]
^:source-dep [clojure-emacs/alembic "0.3.3"]
^:source-dep [org.clojure/tools.analyzer.jvm "0.6.9"]
^:source-dep [org.clojure/tools.namespace "0.3.0-alpha3"]
^:source-dep [org.clojure/tools.reader "1.0.0-beta4"]
Expand Down

0 comments on commit dc85d78

Please sign in to comment.