diff options
Diffstat (limited to 'Changelog.md')
-rw-r--r-- | Changelog.md | 34 |
1 files changed, 33 insertions, 1 deletions
diff --git a/Changelog.md b/Changelog.md index ee106047..1eb90c22 100644 --- a/Changelog.md +++ b/Changelog.md @@ -1,4 +1,36 @@ -### 0.4.5 (unreleased) +### 0.4.7 (unreleased) + +Features: + * Type checker: Warn when ``msg.value`` is used in non-payable function. + * Code generator: Inject the Swarm hash of a metadata file into the bytecode. + * Optimizer: Some dead code elimination. + +Bugfixes: + * Code generator: throw if calling the identity precompile failed during memory (array) copying. + * Type checker: string literals that are not valid UTF-8 cannot be converted to string type + * Code generator: any non-zero value given as a boolean argument is now converted into 1. + +### 0.4.6 (2016-11-22) + +Bugfixes: + * Optimizer: Knowledge about state was not correctly cleared for JUMPDESTs (introduced in 0.4.5) + +### 0.4.5 (2016-11-21) + +Features: + * Function types + * Do-while loops: support for a ``do <block> while (<expr>);`` control structure + * Inline assembly: support ``invalidJumpLabel`` as a jump label. + * Type checker: now more eagerly searches for a common type of an inline array with mixed types + * Code generator: generates a runtime error when an out-of-range value is converted into an enum type. + +Bugfixes: + + * Inline assembly: calculate stack height warning correctly even when local variables are used. + * Code generator: check for value transfer in non-payable constructors. + * Parser: disallow empty enum definitions. + * Type checker: disallow conversion between different enum types. + * Interface JSON: do not include trailing new line. ### 0.4.4 (2016-10-31) |