Prepare changelog for 0.5.10 release.

This commit is contained in:
chriseth 2019-06-25 11:29:33 +02:00
parent 930ce34953
commit a03687ccfa
2 changed files with 9 additions and 5 deletions

View File

@ -1,8 +1,8 @@
### 0.5.10 (unreleased)
### 0.5.10 (2019-06-25)
Important Bugfixes:
* Fix incorrect abi encoding of storage array of data type that occupy multiple storage slots
* Properly zero out higher order bits in elements of an array of negative numbers when assigning to storage and converting the type at the same time.
* ABIEncoderV2: Fix incorrect abi encoding of storage array of data type that occupy multiple storage slots
* Code Generator: Properly zero out higher order bits in elements of an array of negative numbers when assigning to storage and converting the type at the same time.
Compiler Features:
@ -12,15 +12,15 @@ Compiler Features:
Bugfixes:
* Type Checker: Set state mutability of the function type members ``gas`` and ``value`` to pure (while their return type inherits state mutability from the function type).
* Yul / Inline Assembly Parser: Disallow trailing commas in function call arguments.
* Set state mutability of the function type members ``gas`` and ``value`` to pure (while their return type inherits state mutability from the function type).
Build System:
* Attempt to use stock Z3 cmake files to find Z3 and only fall back to manual discovery.
* Generate a cmake error for gcc versions older than 5.0.
* CMake: use imported targets for boost.
* Emscripten build: upgrade to boost 1.70.
* Generate a cmake error for gcc versions older than 5.0.

View File

@ -740,6 +740,10 @@
],
"released": "2018-12-03"
},
"0.5.10": {
"bugs": [],
"released": "2019-06-25"
},
"0.5.2": {
"bugs": [
"SignedArrayStorageCopy",