aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorchriseth <chris@ethereum.org>2018-09-14 04:53:40 +0800
committerchriseth <chris@ethereum.org>2018-09-14 04:54:57 +0800
commit300ac9878f7dc386463f2d6a821bea99196599ca (patch)
tree73447fddf723cb4e815d81e67378542670f4c227
parent8b089cc849b534e45edeccb2abcf86b02bb43002 (diff)
parent59dbf8f1085b8b92e8b7eb0ce380cbeb642e97eb (diff)
downloaddexon-solidity-300ac9878f7dc386463f2d6a821bea99196599ca.tar
dexon-solidity-300ac9878f7dc386463f2d6a821bea99196599ca.tar.gz
dexon-solidity-300ac9878f7dc386463f2d6a821bea99196599ca.tar.bz2
dexon-solidity-300ac9878f7dc386463f2d6a821bea99196599ca.tar.lz
dexon-solidity-300ac9878f7dc386463f2d6a821bea99196599ca.tar.xz
dexon-solidity-300ac9878f7dc386463f2d6a821bea99196599ca.tar.zst
dexon-solidity-300ac9878f7dc386463f2d6a821bea99196599ca.zip
Merge branch 'release' into develop.
-rw-r--r--Changelog.md15
-rw-r--r--docs/bugs.json2
-rw-r--r--docs/bugs_by_version.json4
3 files changed, 14 insertions, 7 deletions
diff --git a/Changelog.md b/Changelog.md
index 18062c9c..2619801f 100644
--- a/Changelog.md
+++ b/Changelog.md
@@ -94,9 +94,6 @@ Compiler Features:
* Code Generator: Allocate and free local variables according to their scope.
* Removed ``pragma experimental "v0.5.0";``.
-Critical Bugfixes:
- * Code Generator: Properly perform cleanup for exponentiation and non-256 bit types.
-
Bugfixes:
* Build System: Support versions of CVC4 linked against CLN instead of GMP. In case of compilation issues due to the experimental SMT solver support, the solvers can be disabled when configuring the project with CMake using ``-DUSE_CVC4=OFF`` or ``-DUSE_Z3=OFF``.
* Tests: Fix chain parameters to make ipc tests work with newer versions of cpp-ethereum.
@@ -117,13 +114,19 @@ Bugfixes:
* Type Checker: Consider fixed size arrays when checking for recursive structs.
* Type Checker: Fix crashes in erroneous tuple assignments in which the type of the right hand side cannot be determined.
* Type Checker: Fix freeze for negative fixed-point literals very close to ``0``, such as ``-1e-100``.
- * Type Checker: Report error when using structs in events without experimental ABIEncoderV2. This used to crash or log the wrong values.
- * Type Checker: Report error when using indexed structs in events with experimental ABIEncoderV2. This used to log wrong values.
* Type Checker: Dynamic types as key for public mappings return error instead of assertion fail.
* Type Checker: Fix internal error when array index value is too large.
* Type System: Allow arbitrary exponents for literals with a mantissa of zero.
* Parser: Fix incorrect source location for nameless parameters.
- * Parser: Treat unicode line endings as terminating strings and single-line comments.
+
+### 0.4.25 (2018-09-12)
+
+Important Bugfixes:
+ * Code Generator: Properly perform cleanup for exponentiation and non-256 bit types.
+ * Type Checker: Report error when using indexed structs in events with experimental ABIEncoderV2. This used to log wrong values.
+ * Type Checker: Report error when using structs in events without experimental ABIEncoderV2. This used to crash or log the wrong values.
+ * Parser: Consider all unicode line terminators (LF, VF, FF, CR, NEL, LS, PS) for single-line comments
+ and string literals. They are invalid in strings and will end comments.
* Parser: Disallow unterminated multi-line comments at the end of input.
* Parser: Treat ``/** /`` as unterminated multi-line comment.
diff --git a/docs/bugs.json b/docs/bugs.json
index 980b3897..28c0fe62 100644
--- a/docs/bugs.json
+++ b/docs/bugs.json
@@ -12,7 +12,7 @@
"summary": "Using structs in events logged wrong data.",
"description": "If a struct is used in an event, the address of the struct is logged instead of the actual data.",
"introduced": "0.4.17",
- "fixed": "0.5.0",
+ "fixed": "0.4.25",
"severity": "very low",
"check": {"ast-compact-json-path": "$..[?(@.nodeType === 'EventDefinition')]..[?(@.nodeType === 'UserDefinedTypeName' && @.typeDescriptions.typeString.startsWith('struct'))]"}
},
diff --git a/docs/bugs_by_version.json b/docs/bugs_by_version.json
index 96cc3c5c..0318ac89 100644
--- a/docs/bugs_by_version.json
+++ b/docs/bugs_by_version.json
@@ -515,6 +515,10 @@
],
"released": "2018-05-16"
},
+ "0.4.25": {
+ "bugs": [],
+ "released": "2018-09-12"
+ },
"0.4.3": {
"bugs": [
"ExpExponentCleanup",