Set version to 0.6.4.

This commit is contained in:
chriseth 2020-02-18 16:42:02 +01:00
parent a56159368a
commit 9dd9a68c08
2 changed files with 13 additions and 2 deletions

View File

@ -10,7 +10,7 @@ include(EthPolicy)
eth_policy()
# project name and version should be set after cmake_policy CMP0048
set(PROJECT_VERSION "0.6.3")
set(PROJECT_VERSION "0.6.4")
project(solidity VERSION ${PROJECT_VERSION} LANGUAGES C CXX)
include(TestBigEndian)

View File

@ -1,3 +1,15 @@
### 0.6.4 (unreleased)
Language Features:
Compiler Features:
Bugfixes:
### 0.6.3 (2020-02-18)
Language Features:
@ -6,7 +18,6 @@ Language Features:
* Report source locations for structured documentation errors.
Compiler Features:
* AST: Add a new node for doxygen-style, structured documentation that can be received by contract, function, event and modifier definitions.
* Code Generator: Use ``calldatacopy`` instead of ``codecopy`` to zero out memory past input.