aboutsummaryrefslogtreecommitdiffstats
path: root/Changelog.md
diff options
context:
space:
mode:
authorchriseth <chris@ethereum.org>2018-05-07 22:23:39 +0800
committerAlex Beregszaszi <alex@rtfs.hu>2018-06-13 01:51:40 +0800
commit1dc28c065d91416caf778770ef57b73b30462b8d (patch)
tree04aeb5e2eb3116f0a9b12e0b145f824cc792eade /Changelog.md
parent71dc4011702c2ba047553aec1aad8dbae5dcabe7 (diff)
downloaddexon-solidity-1dc28c065d91416caf778770ef57b73b30462b8d.tar
dexon-solidity-1dc28c065d91416caf778770ef57b73b30462b8d.tar.gz
dexon-solidity-1dc28c065d91416caf778770ef57b73b30462b8d.tar.bz2
dexon-solidity-1dc28c065d91416caf778770ef57b73b30462b8d.tar.lz
dexon-solidity-1dc28c065d91416caf778770ef57b73b30462b8d.tar.xz
dexon-solidity-1dc28c065d91416caf778770ef57b73b30462b8d.tar.zst
dexon-solidity-1dc28c065d91416caf778770ef57b73b30462b8d.zip
Properly pad data from calldata.
Diffstat (limited to 'Changelog.md')
-rw-r--r--Changelog.md1
1 files changed, 1 insertions, 0 deletions
diff --git a/Changelog.md b/Changelog.md
index 8c895ee0..e3383eae 100644
--- a/Changelog.md
+++ b/Changelog.md
@@ -1,6 +1,7 @@
### 0.5.0 (unreleased)
Breaking Changes:
+ * ABI Encoder: Properly pad data from calldata (``msg.data`` and external function parameters). Use ``abi.encodePacked`` for unpadded encoding.
* Code Generator: Signed right shift uses proper arithmetic shift, i.e. rounding towards negative infinity. Warning: this may silently change the semantics of existing code!
* Commandline interface: Require ``-`` if standard input is used as source.
* General: ``continue`` in a ``do...while`` loop jumps to the condition (it used to jump to the loop body). Warning: this may silently change the semantics of existing code.