Merge pull request #10583 from ethereum/fix-doc-pragma-checks

Fix checks for code snippets embedded in docs
This commit is contained in:
chriseth 2020-12-14 11:30:12 +01:00 committed by GitHub
commit e37e3099aa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
7 changed files with 14 additions and 9 deletions

View File

@ -30,7 +30,7 @@ Not all types for constants and immutables are implemented at this time. The onl
::
// SPDX-License-Identifier: GPL-3.0
pragma solidity >0.7.2;
pragma solidity >=0.7.4;
uint constant X = 32**22 + 8;

View File

@ -83,7 +83,7 @@ registering with a username and password, all you need is an Ethereum keypair.
::
// SPDX-License-Identifier: GPL-3.0
pragma solidity >0.5.99 <0.8.0;
pragma solidity >=0.7.0 <0.8.0;
contract Coin {
// The keyword "public" makes variables

View File

@ -49,7 +49,7 @@ The following example shows a contract and a function using all available tags.
.. code:: Solidity
// SPDX-License-Identifier: GPL-3.0
pragma solidity >0.6.10 <0.8.0;
pragma solidity >=0.6.12 <0.8.0;
/// @title A simulator for trees
/// @author Larry A. Gardner

View File

@ -1071,6 +1071,10 @@ No::
and in ``Congress.sol``::
// SPDX-License-Identifier: GPL-3.0
pragma solidity ^0.7.0;
import "./owned.sol";

View File

@ -243,7 +243,7 @@ individual elements:
::
// SPDX-License-Identifier: GPL-3.0
pragma solidity >=0.4.0 <0.8.0;
pragma solidity >=0.4.16 <0.8.0;
contract C {
function f() public pure {
@ -554,4 +554,4 @@ assigning it to a local variable, as in
.. note::
Until Solidity 0.7.0, memory-structs containing members of storage-only types (e.g. mappings)
were allowed and assignments like ``campaigns[campaignID] = Campaign(beneficiary, goal, 0, 0)``
in the example above would work and just silently skip those members.
in the example above would work and just silently skip those members.

View File

@ -70,7 +70,7 @@ function compileFull()
printError "Was failure: $exit_code"
echo "$errors"
printError "While calling:"
echo "\"$SOLC\" $ARGS $files"
echo "\"$SOLC\" $args $files"
printError "Inside directory:"
pwd
false

View File

@ -65,7 +65,7 @@ function getAllAvailableVersions()
{
allVersions=()
local allListedVersions=( $(
wget -q -O- https://ethereum.github.io/solc-bin/bin/list.txt |
wget -q -O- https://binaries.soliditylang.org/bin/list.txt |
grep -Po '(?<=soljson-v)\d+.\d+.\d+(?=\+commit)' |
sort -V
) )
@ -108,7 +108,7 @@ function findMinimalVersion()
do
if versionGreater "$ver" "$pragmaVersion"
then
minVersion="$ver"
version="$ver"
break
elif ([ $greater == false ]) && versionEqual "$ver" "$pragmaVersion"
then
@ -117,9 +117,10 @@ function findMinimalVersion()
fi
done
if [ -z version ]
if [ -z "$version" ]
then
printError "No release $sign$pragmaVersion was listed in available releases!"
exit 1
fi
}