From cacd271ba6ceb96f5531748dd158fa23ad8b5b7c Mon Sep 17 00:00:00 2001 From: Taariq Levack Date: Thu, 14 Mar 2019 14:51:55 +0200 Subject: [PATCH] Update introduction-to-smart-contracts.rst Looks like this was missed in the bump --- docs/introduction-to-smart-contracts.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/introduction-to-smart-contracts.rst b/docs/introduction-to-smart-contracts.rst index c221a72b2..bfce0d5a3 100644 --- a/docs/introduction-to-smart-contracts.rst +++ b/docs/introduction-to-smart-contracts.rst @@ -33,7 +33,7 @@ Storage The first line simply tells that the source code is written for Solidity version 0.4.0 or anything newer that does not break functionality -(up to, but not including, version 0.6.0). This is to ensure that the +(up to, but not including, version 0.7.0). This is to ensure that the contract is not compilable with a new (breaking) compiler version, where it could behave differently. :ref:`Pragmas` are common instructions for compilers about how to treat the source code (e.g. `pragma once `_).