diff options
author | chriseth <chris@ethereum.org> | 2017-03-16 00:06:14 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-03-16 00:06:14 +0800 |
commit | 39964f574e25bd9c4092e4404dc5b48551f702b5 (patch) | |
tree | 5d10a544a48c5e245d466ad268d8b897e0e334f2 | |
parent | 0c8a766146cf1416143a5b1a66050b8d6c233907 (diff) | |
parent | 4d2f73c00df7b41dc5ada57e2d6bb2ca63ae3840 (diff) | |
download | dexon-solidity-39964f574e25bd9c4092e4404dc5b48551f702b5.tar.gz dexon-solidity-39964f574e25bd9c4092e4404dc5b48551f702b5.tar.zst dexon-solidity-39964f574e25bd9c4092e4404dc5b48551f702b5.zip |
Merge pull request #1781 from ethereum/changelog
Finalize changelog.
-rw-r--r-- | Changelog.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Changelog.md b/Changelog.md index 98be69ce..f1158672 100644 --- a/Changelog.md +++ b/Changelog.md @@ -1,4 +1,4 @@ -### 0.4.10 (unreleased) +### 0.4.10 (2017-03-15) Features: * Add ``assert(condition)``, which throws if condition is false (meant for internal errors). @@ -10,6 +10,7 @@ Features: * Parser: Support scientific notation in numbers (e.g. ``2e8`` and ``200e-2``). * Type system: Support explicit conversion of external function to address. * Type system: Warn if base of exponentiation is literal (result type might be unexpected). + * Type system: Warn if constant state variables are not compile-time constants. Bugfixes: * Commandline interface: Always escape filenames (replace ``/``, ``:`` and ``.`` with ``_``). @@ -21,7 +22,6 @@ Bugfixes: * Type system: Detect cyclic dependencies between constants. * Type system: Disallow arrays with negative length. * Type system: Fix a crash related to invalid binary operators. - * Type system: Warn if constant state variables are not compile-time constants. * Type system: Disallow ``var`` declaration with empty tuple type. * Type system: Correctly convert function argument types to pointers for member functions. * Type system: Move privateness of constructor into AST itself. |