From 0d3303e4af0878a082043c66f36e681f131fc6b2 Mon Sep 17 00:00:00 2001 From: chriseth Date: Thu, 2 Apr 2020 17:46:29 +0200 Subject: [PATCH] Changelog entry for immutable variables. --- Changelog.md | 1 + 1 file changed, 1 insertion(+) diff --git a/Changelog.md b/Changelog.md index 82a40eced..2c757e402 100644 --- a/Changelog.md +++ b/Changelog.md @@ -6,6 +6,7 @@ Important Bugfixes: Language Features: * Allow local storage variables to be declared without initialization, as long as they are assigned before they are accessed. + * State variables can be marked ``immutable`` which causes them to be read-only, but assignable in the constructor. The value will be stored directly in the code. Compiler Features: