Skip to content

Commit

Permalink
1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Benjamin-Dobell committed Jul 31, 2020
1 parent c92f620 commit 75b835b
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
# limitations under the License.
#

version = 1.0.3
version = 1.1.0
# https://github.com/EmmyLua/EmmyLuaDebugger/releases
emmyDebuggerVersion = 1.0.14
# https://github.com/EmmyLua/EmmyLuaLegacyDebugger/releases
Expand Down
9 changes: 8 additions & 1 deletion src/main/resources/META-INF/plugin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,21 @@
<idea-plugin xmlns:xi="http://www.w3.org/2001/XInclude">
<id>au.com.glassechidna.luanalysis</id>
<name>Luanalysis</name>
<version>1.0.3</version>
<version>1.1.0</version>
<vendor email="contact@glassechidna.com.au">Benjamin Dobell</vendor>
<category>Custom Languages</category>
<description><![CDATA[
An IDE for statically typed Lua development.<br>
<p><a href="https://github.com/Benjamin-Dobell/IntelliJ-Luanalysis">Source Code</a></p>
]]></description>
<change-notes><![CDATA[
<strong>1.1.0</strong>
<ul>
<li>Ctrl/Cmd + Click ("Go To") on a string literal argument of a require("file") now takes you to the return value of the referenced file, rather than simply opening the file.<li>
<li>Fixed type resolution of require("file") expressions, where the referenced file has no return statements.</li>
<li>Added/fixed support for negative number literal types.</li>
<li>Type inference will now handle unary minus (negate) expressions, where the operand is a number literal. String literals representing values that Lua will <em>silently coerce</em> to a number are also handled.</li>
</ul>
<strong>1.0.3</strong>
<ul>
<li>Ensured "Return type 'void' specified but no return values found" annotation is no longer raised for functions annotated as ---@return void.</li>
Expand Down

0 comments on commit 75b835b

Please sign in to comment.