From e870e491d9cab563b6f53c171dffea1a15e4dff8 Mon Sep 17 00:00:00 2001 From: aniket-engg Date: Mon, 19 Aug 2024 19:58:01 +0530 Subject: [PATCH] fix pragma --- libs/remix-tests/tests/examples_1/simple_storage.sol | 2 +- libs/remix-tests/tests/examples_1/simple_storage_test.sol | 2 +- libs/remix-tests/tests/examples_2/simple_storage.sol | 2 +- libs/remix-tests/tests/examples_2/simple_storage_test.sol | 2 +- libs/remix-tests/tests/examples_3/simple_string.sol | 2 +- libs/remix-tests/tests/examples_3/simple_string_test.sol | 2 +- libs/remix-tests/tests/examples_5/contract/simple_storage.sol | 2 +- libs/remix-tests/tests/examples_5/lib/EvenOdd.sol | 2 +- libs/remix-tests/tests/examples_5/test/simple_storage_test.sol | 2 +- libs/remix-tests/tests/number/number_test.sol | 2 +- 10 files changed, 10 insertions(+), 10 deletions(-) diff --git a/libs/remix-tests/tests/examples_1/simple_storage.sol b/libs/remix-tests/tests/examples_1/simple_storage.sol index c218711d60..0dd379b959 100644 --- a/libs/remix-tests/tests/examples_1/simple_storage.sol +++ b/libs/remix-tests/tests/examples_1/simple_storage.sol @@ -1,4 +1,4 @@ -pragma solidity >= 0.5.0 < 0.8.0; +pragma solidity >= 0.5.0 < 0.9.0; contract SimpleStorage { uint public storedData; diff --git a/libs/remix-tests/tests/examples_1/simple_storage_test.sol b/libs/remix-tests/tests/examples_1/simple_storage_test.sol index 958788563a..ef5b920a70 100644 --- a/libs/remix-tests/tests/examples_1/simple_storage_test.sol +++ b/libs/remix-tests/tests/examples_1/simple_storage_test.sol @@ -1,4 +1,4 @@ -pragma solidity >= 0.5.0 < 0.8.0; +pragma solidity >= 0.5.0 < 0.9.0; import "./simple_storage.sol"; contract MyTest { diff --git a/libs/remix-tests/tests/examples_2/simple_storage.sol b/libs/remix-tests/tests/examples_2/simple_storage.sol index 7ee2ffdc6d..d95b83d46d 100644 --- a/libs/remix-tests/tests/examples_2/simple_storage.sol +++ b/libs/remix-tests/tests/examples_2/simple_storage.sol @@ -1,4 +1,4 @@ -pragma solidity >= 0.5.0 < 0.8.0; +pragma solidity >= 0.5.0 < 0.9.0; contract SimpleStorage { uint public storedData; diff --git a/libs/remix-tests/tests/examples_2/simple_storage_test.sol b/libs/remix-tests/tests/examples_2/simple_storage_test.sol index a0c3a0d6ca..7a40984296 100644 --- a/libs/remix-tests/tests/examples_2/simple_storage_test.sol +++ b/libs/remix-tests/tests/examples_2/simple_storage_test.sol @@ -1,4 +1,4 @@ -pragma solidity >= 0.5.0 < 0.8.0; +pragma solidity >= 0.5.0 < 0.9.0; import "./simple_storage.sol"; contract MyTest { diff --git a/libs/remix-tests/tests/examples_3/simple_string.sol b/libs/remix-tests/tests/examples_3/simple_string.sol index 1bc847f984..c245495387 100644 --- a/libs/remix-tests/tests/examples_3/simple_string.sol +++ b/libs/remix-tests/tests/examples_3/simple_string.sol @@ -1,4 +1,4 @@ -pragma solidity >= 0.5.0 < 0.8.0; +pragma solidity >= 0.5.0 < 0.9.0; contract SimpleString { string public storedData; diff --git a/libs/remix-tests/tests/examples_3/simple_string_test.sol b/libs/remix-tests/tests/examples_3/simple_string_test.sol index 3157f53c35..d6e85fee01 100644 --- a/libs/remix-tests/tests/examples_3/simple_string_test.sol +++ b/libs/remix-tests/tests/examples_3/simple_string_test.sol @@ -1,4 +1,4 @@ -pragma solidity >= 0.5.0 < 0.8.0; +pragma solidity >= 0.5.0 < 0.9.0; import "./simple_string.sol"; contract StringTest { diff --git a/libs/remix-tests/tests/examples_5/contract/simple_storage.sol b/libs/remix-tests/tests/examples_5/contract/simple_storage.sol index 1cfbeb8f13..3438067d77 100644 --- a/libs/remix-tests/tests/examples_5/contract/simple_storage.sol +++ b/libs/remix-tests/tests/examples_5/contract/simple_storage.sol @@ -1,4 +1,4 @@ -pragma solidity >= 0.5.0 < 0.8.0; +pragma solidity >= 0.5.0 < 0.9.0; import "../../examples_4/SafeMath.sol"; import "../lib/EvenOdd.sol"; diff --git a/libs/remix-tests/tests/examples_5/lib/EvenOdd.sol b/libs/remix-tests/tests/examples_5/lib/EvenOdd.sol index a1536375a6..350c34b6e5 100644 --- a/libs/remix-tests/tests/examples_5/lib/EvenOdd.sol +++ b/libs/remix-tests/tests/examples_5/lib/EvenOdd.sol @@ -1,4 +1,4 @@ -pragma solidity >= 0.5.0 < 0.8.0; +pragma solidity >= 0.5.0 < 0.9.0; contract EvenOdd { diff --git a/libs/remix-tests/tests/examples_5/test/simple_storage_test.sol b/libs/remix-tests/tests/examples_5/test/simple_storage_test.sol index c5ef812a61..e6607734a9 100644 --- a/libs/remix-tests/tests/examples_5/test/simple_storage_test.sol +++ b/libs/remix-tests/tests/examples_5/test/simple_storage_test.sol @@ -1,4 +1,4 @@ -pragma solidity >= 0.5.0 < 0.8.0; +pragma solidity >= 0.5.0 < 0.9.0; import "./../contract/simple_storage.sol"; contract StorageResolveTest { diff --git a/libs/remix-tests/tests/number/number_test.sol b/libs/remix-tests/tests/number/number_test.sol index 3bbfbc14f0..936691dc40 100644 --- a/libs/remix-tests/tests/number/number_test.sol +++ b/libs/remix-tests/tests/number/number_test.sol @@ -1,4 +1,4 @@ -pragma solidity >= 0.5.0 < 0.8.0; +pragma solidity >= 0.5.0 < 0.9.0; contract IntegerTest {