From c62048a50a397da1294a5122bbc4b07bac1d9cf7 Mon Sep 17 00:00:00 2001 From: Erik Kundt Date: Fri, 10 Jan 2020 18:55:28 +0100 Subject: [PATCH] Updates readme to 0.7.0. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 4729c95c0..8eef61b82 100644 --- a/README.md +++ b/README.md @@ -36,7 +36,7 @@ found in the [Solidity documentation](https://solidity.readthedocs.io/en/latest/ A "Hello World" program in Solidity is of even less use than in other languages, but still: ```solidity -pragma solidity ^0.6.0; +pragma solidity >=0.6.0 <0.8.0; contract HelloWorld { function helloWorld() external pure returns (string memory) {