aboutsummaryrefslogtreecommitdiffstats
path: root/Changelog.md
diff options
context:
space:
mode:
authorAlex Beregszaszi <alex@rtfs.hu>2017-01-27 21:24:05 +0800
committerAlex Beregszaszi <alex@rtfs.hu>2017-01-27 21:24:05 +0800
commit965dc7201626ceb9f5406ca84189a478cd8a55bd (patch)
tree77a2f3fd64078e1f86430d6a4b6b321fef11d6c0 /Changelog.md
parentb2c35fb41a65dc996189b890f292103d9318b53e (diff)
downloaddexon-solidity-965dc7201626ceb9f5406ca84189a478cd8a55bd.tar
dexon-solidity-965dc7201626ceb9f5406ca84189a478cd8a55bd.tar.gz
dexon-solidity-965dc7201626ceb9f5406ca84189a478cd8a55bd.tar.bz2
dexon-solidity-965dc7201626ceb9f5406ca84189a478cd8a55bd.tar.lz
dexon-solidity-965dc7201626ceb9f5406ca84189a478cd8a55bd.tar.xz
dexon-solidity-965dc7201626ceb9f5406ca84189a478cd8a55bd.tar.zst
dexon-solidity-965dc7201626ceb9f5406ca84189a478cd8a55bd.zip
Mention in changelog that invalid as an opcode is valid inline assembly
Diffstat (limited to 'Changelog.md')
-rw-r--r--Changelog.md3
1 files changed, 2 insertions, 1 deletions
diff --git a/Changelog.md b/Changelog.md
index 8dd1b89c..7a9d4818 100644
--- a/Changelog.md
+++ b/Changelog.md
@@ -4,13 +4,14 @@ Features:
* Compiler interface: Contracts and libraries can be referenced with a ``file:`` prefix to make them unique.
* Compiler interface: Report source location for "stack too deep" errors.
* AST: Use deterministic node identifiers.
+ * Inline assembly: introduce ``invalid`` (EIP141) as an opcode.
* Type system: Introduce type identifier strings.
* Type checker: Warn about invalid checksum for addresses and deduce type from valid ones.
* Metadata: Do not include platform in the version number.
* Metadata: Add option to store sources as literal content.
* Code generator: Extract array utils into low-level functions.
* Code generator: Internal errors (array out of bounds, etc.) now cause a reversion by using an invalid
- instruction (0xfe) instead of an invalid jump. Invalid jump is still kept for explicit throws.
+ instruction (0xfe - EIP141) instead of an invalid jump. Invalid jump is still kept for explicit throws.
Bugfixes:
* Code generator: Allow recursive structs.