Skip to content

Commit

Permalink
Version 0.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Kisioj committed Jul 16, 2019
1 parent c84949d commit c4f511e
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 1 deletion.
16 changes: 16 additions & 0 deletions docs/changelog/changes-v0.7.0.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
<h2>Changelog</h2>
<h3>Features</h3>
<ul>
<li>Added while loop (break and continue keywords supported)</li>
<li>Compilation is stopped now if there are syntax errors</li>
<li>Added IterationStatementNotInLoopError (break, continue)</li>
<li>Added UdeclaredIdentifierError support for const assignment</li>
<li>Added TooBigArrayIndexError</li>
<li>Added ArrayIndexOutOfRangeError</li>
<li>Added TooBigArraySizeError</li>
<li>Added NotValidClassOrPrototypeError</li>
<li>Added RedefinitionError</li>
<li>Added UnableToEvaluateConstError</li>
<li>Added KeywordUsedAsNameError</li>
<li>Changed '//supresss WARNING_CODE' comment format to '//! suppress WARNING_CODE'</li>
</ul>
2 changes: 1 addition & 1 deletion src/DaedalusCompiler/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ namespace DaedalusCompiler
{
class Program
{
private const string version = "0.6.1";
private const string version = "0.7.0";
private const string compiler_name = "daedalus-compiler";

static void ShowHelp()
Expand Down

0 comments on commit c4f511e

Please sign in to comment.