Skip to content

Commit df193b1

Browse files
authored
Merge pull request #10852 from ethereum/setReleaseDate
Set release date for 0.8.1.
2 parents 34fa756 + 490dc09 commit df193b1

File tree

2 files changed

+11
-4
lines changed

2 files changed

+11
-4
lines changed

Changelog.md

+7-4
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,13 @@
1-
### 0.8.1 (unreleased)
1+
### 0.8.1 (2021-01-27)
22

33
Language Features:
44
* Possibility to use ``catch Panic(uint code)`` to catch a panic failure from an external call.
55

66
Compiler Features:
7-
* Build system: Update the soljson.js build to emscripten 2.0.12 and boost 1.75.0.
87
* Code Generator: Reduce the cost of ``<address>.code.length`` by using ``extcodesize`` directly.
9-
* Command Line Interface: Allow "=" as separator between library name and address in ``--libraries`` commandline option.
8+
* Command Line Interface: Allow ``=`` as separator between library name and address in ``--libraries`` commandline option.
109
* Command Line Interface: New option ``--model-checker-targets`` allows specifying which targets should be checked. The valid options are ``all``, ``constantCondition``, ``underflow``, ``overflow``, ``divByZero``, ``balance``, ``assert``, ``popEmptyArray``, where the default is ``all``. Multiple targets can be chosen at the same time, separated by a comma without spaces: ``underflow,overflow,assert``.
11-
* Command Line Interface: Only accept the library address that is prefixed with "0x" in ``--libraries`` commandline option.
10+
* Command Line Interface: Only accept library addresses with a prefix of ``0x`` in ``--libraries`` commandline option.
1211
* Optimizer: Add rule to replace ``iszero(sub(x,y))`` by ``eq(x,y)``.
1312
* Parser: Report meaningful error if parsing a version pragma failed.
1413
* SMTChecker: Output internal and trusted external function calls in a counterexample's transaction trace.
@@ -33,6 +32,10 @@ Bugfixes:
3332
* Type Checker: Fix internal error caused by constant structs containing mappings.
3433
* Type System: Disallow implicit conversion from ``uintN`` to ``intM`` when ``M > N``, and by extension, explicit conversion between the same types is also disallowed.
3534

35+
Build System:
36+
* Update the soljson.js build to emscripten 2.0.12 and boost 1.75.0.
37+
38+
3639
### 0.8.0 (2020-12-16)
3740

3841
Breaking Changes:

docs/bugs_by_version.json

+4
Original file line numberDiff line numberDiff line change
@@ -1381,5 +1381,9 @@
13811381
"0.8.0": {
13821382
"bugs": [],
13831383
"released": "2020-12-16"
1384+
},
1385+
"0.8.1": {
1386+
"bugs": [],
1387+
"released": "2021-01-27"
13841388
}
13851389
}

0 commit comments

Comments
 (0)