Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update to work with Clojure 1.7 #10

Open
mshenfield opened this issue Jan 18, 2016 · 1 comment
Open

Update to work with Clojure 1.7 #10

mshenfield opened this issue Jan 18, 2016 · 1 comment

Comments

@mshenfield
Copy link

Upgrade clojail to work with the latest stable release of Clojure (1.7 as of today). This lays the groundwork for TryClojure to use Clojure 1.7, as mentioned in Raynes/tryclojure/issues/53.

@mshenfield
Copy link
Author

The only breaking change is an update to the threading macro in Clojure 1.6, which, instead of expanding

(macroexpand '(-> x inc dec)) to (dec (clojure.core/-> x inc))

as in 1.5, outputs a complete result instead of a recursive one in 1.6+

(dec (inc x))

Updated the tests to use an argument to macroexpand that doesn't conflict across versions.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant