From 9dd9a68c08f3d6aa04388ad797a807aaa30b0dff Mon Sep 17 00:00:00 2001 From: chriseth Date: Tue, 18 Feb 2020 16:42:02 +0100 Subject: [PATCH] Set version to 0.6.4. --- CMakeLists.txt | 2 +- Changelog.md | 13 ++++++++++++- 2 files changed, 13 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 1ab3e3741..4278770f1 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -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) diff --git a/Changelog.md b/Changelog.md index f00d555e9..c83b26e83 100644 --- a/Changelog.md +++ b/Changelog.md @@ -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.