Skip to content

Commit 79e2f2f

Browse files
committed
0.7.7-snapshot
1 parent 3f42d45 commit 79e2f2f

3 files changed

Lines changed: 43 additions & 11 deletions

File tree

CHANGELOG.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,25 @@
1+
0.7.6
2+
3+
* resolve: fix qualified :keys destructuring
4+
* resolve: support this in (reify), (proxy) and (extend)
5+
* resolve: support (..), (->) and (doto) w/ and w/o parens
6+
* resolve: skip not quoted lists in ns elements
7+
* deps: notify if tool process failed to start
8+
* debugger: handle munged names in evaluator
9+
* debugger: workaround missing autoboxing for primitives eval
10+
* resolve: force JVM name for inner classes; fix (.method class)
11+
* resolve: better dynamic condition in . and ..
12+
* resolve: avoid resetting RESOLVE_SKIPPED in parallel
13+
* rename: fix extra space on rename (sym.)
14+
* rename: handle ::keys destructuring bindings
15+
* resolve: fix alias and some.alias confusion
16+
* resolve: clarify (.call obj) vs (call obj) in various cases
17+
* resolve: support mixed PSI/ASM class hierarchies
18+
* lexer: fix BigInteger numbers and octal chars literals
19+
* lexer: improve bad literals handling
20+
* resolve: improve qualified tags handling
21+
* tools: update nREPL dependencies #30
22+
123
0.7.5
224

325
* Editor: semantic highlighting (rainbow symbols)

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Available idea versions:
22
# https://www.jetbrains.com/intellij-repository/releases
33
# https://www.jetbrains.com/intellij-repository/snapshots
4-
version=0.7.6-snapshot
4+
version=0.7.7-snapshot
55

66
ideaVersion=2017.2
77
javaVersion=1.8

resources/META-INF/plugin.xml

Lines changed: 20 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<idea-plugin>
33
<id>org.jetbrains.idea.clojure</id>
4-
<version>0.7.6-snapshot</version>
4+
<version>0.7.7-snapshot</version>
55
<vendor email="gregory.shrago@jetbrains.com">Greg Shrago</vendor>
66
<idea-version since-build="172"/>
77

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

0 commit comments

Comments
 (0)