Skip to content

Commit

Permalink
0.7.7-snapshot
Browse files Browse the repository at this point in the history
  • Loading branch information
gregsh committed May 19, 2019
1 parent 3f42d45 commit 79e2f2f
Show file tree
Hide file tree
Showing 3 changed files with 43 additions and 11 deletions.
22 changes: 22 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,25 @@
0.7.6

* resolve: fix qualified :keys destructuring
* resolve: support this in (reify), (proxy) and (extend)
* resolve: support (..), (->) and (doto) w/ and w/o parens
* resolve: skip not quoted lists in ns elements
* deps: notify if tool process failed to start
* debugger: handle munged names in evaluator
* debugger: workaround missing autoboxing for primitives eval
* resolve: force JVM name for inner classes; fix (.method class)
* resolve: better dynamic condition in . and ..
* resolve: avoid resetting RESOLVE_SKIPPED in parallel
* rename: fix extra space on rename (sym.)
* rename: handle ::keys destructuring bindings
* resolve: fix alias and some.alias confusion
* resolve: clarify (.call obj) vs (call obj) in various cases
* resolve: support mixed PSI/ASM class hierarchies
* lexer: fix BigInteger numbers and octal chars literals
* lexer: improve bad literals handling
* resolve: improve qualified tags handling
* tools: update nREPL dependencies #30

0.7.5

* Editor: semantic highlighting (rainbow symbols)
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Available idea versions:
# https://www.jetbrains.com/intellij-repository/releases
# https://www.jetbrains.com/intellij-repository/snapshots
version=0.7.6-snapshot
version=0.7.7-snapshot

ideaVersion=2017.2
javaVersion=1.8
Expand Down
30 changes: 20 additions & 10 deletions resources/META-INF/plugin.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<idea-plugin>
<id>org.jetbrains.idea.clojure</id>
<version>0.7.6-snapshot</version>
<version>0.7.7-snapshot</version>
<vendor email="[email protected]">Greg Shrago</vendor>
<idea-version since-build="172"/>

Expand All @@ -15,15 +15,25 @@
<change-notes>
<![CDATA[
<ul>
<li>Editor: semantic highlighting (rainbow symbols)</li>
<li>Resolve: resolve java methods from super-interfaces</li>
<li>Resolve: resolve defrecord, deftype methods and fields</li>
<li>Usages: search for keywords and namespaces in whole project</li>
<li>Dependencies: support *.edn files</li>
<li>Dependencies: show in Project | External Libraries</li>
<li>Parser: fix #_, (a.b/c.) and \uNNNN parsing</li>
<li>REPL: fix execution from editor</li>
<li>UI: new SVG icons</li>
<li>resolve: fix qualified :keys destructuring</li>
<li>resolve: support this in (reify), (proxy) and (extend)</li>
<li>resolve: support (..), (->) and (doto) w/ and w/o parens</li>
<li>resolve: skip not quoted lists in ns elements</li>
<li>deps: notify if tool process failed to start</li>
<li>debugger: handle munged names in evaluator</li>
<li>debugger: workaround missing autoboxing for primitives eval</li>
<li>resolve: force JVM name for inner classes; fix (.method class)</li>
<li>resolve: better dynamic condition in . and ..</li>
<li>resolve: avoid resetting RESOLVE_SKIPPED in parallel</li>
<li>rename: fix extra space on rename (sym.)</li>
<li>rename: handle ::keys destructuring bindings</li>
<li>resolve: fix alias and some.alias confusion</li>
<li>resolve: clarify (.call obj) vs (call obj) in various cases</li>
<li>resolve: support mixed PSI/ASM class hierarchies</li>
<li>lexer: fix BigInteger numbers and octal chars literals</li>
<li>lexer: improve bad literals handling</li>
<li>resolve: improve qualified tags handling</li>
<li>tools: update nREPL dependencies #30</li>
</ul>
<a href="https://github.com/gregsh/Clojure-Kit#change-log">Full change log...</a>
]]>
Expand Down

0 comments on commit 79e2f2f

Please sign in to comment.