aboutsummaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorchriseth <chris@ethereum.org>2019-01-10 19:09:35 +0800
committerGitHub <noreply@github.com>2019-01-10 19:09:35 +0800
commite63aa03791a1e30170347129ca1774bfeb460949 (patch)
treed2e90cb60ac5286196de729878ab2561ef32a922 /README.md
parent950e193642f46f9e0f66b639e8dda059d149635b (diff)
parent52fd20e98c140fbc9d177ebc28d366e7da6c3876 (diff)
downloaddexon-solidity-e63aa03791a1e30170347129ca1774bfeb460949.tar.gz
dexon-solidity-e63aa03791a1e30170347129ca1774bfeb460949.tar.zst
dexon-solidity-e63aa03791a1e30170347129ca1774bfeb460949.zip
Merge pull request #5757 from fulldecent/feature-latest-version
Recommend to use latest version
Diffstat (limited to 'README.md')
-rw-r--r--README.md4
1 files changed, 3 insertions, 1 deletions
diff --git a/README.md b/README.md
index c7065c09..959fefc2 100644
--- a/README.md
+++ b/README.md
@@ -19,6 +19,8 @@ that run on the Ethereum Virtual Machine. Smart contracts are programs that are
network where nobody has special authority over the execution and thus they allow to implement tokens of value,
ownership, voting and other kinds of logics.
+When deploying contracts, you should use the latest released version of Solidity. This is because breaking changes as well as new features and bug fixes are introduced regularly. We currently use a 0.x version number [to indicate this fast pace of change](https://semver.org/#spec-item-4).
+
## Build and Install
Instructions about how to build and install the Solidity compiler can be found in the [Solidity documentation](https://solidity.readthedocs.io/en/latest/installing-solidity.html#building-from-source)
@@ -29,7 +31,7 @@ Instructions about how to build and install the Solidity compiler can be found i
A "Hello World" program in Solidity is of even less use than in other languages, but still:
```
-pragma solidity ^0.4.16;
+pragma solidity ^0.5.0;
contract HelloWorld {
function helloWorld() external pure returns (string memory) {