From c04056854abfefc408ef5cd75d78a27cabae8bc6 Mon Sep 17 00:00:00 2001 From: Pascal Marco Caversaccio Date: Sat, 7 Sep 2024 19:35:02 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=81=20Upgrade=20Solidity=20Version=20t?= =?UTF-8?q?o=20`0.8.27`?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Pascal Marco Caversaccio --- .gas-snapshot | 2 +- foundry.toml | 2 +- test/MetamorphicContract.t.sol | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.gas-snapshot b/.gas-snapshot index 523b8cb..a951025 100644 --- a/.gas-snapshot +++ b/.gas-snapshot @@ -1 +1 @@ -MetamorphicContract:testMorphingContract() (gas: 243180) \ No newline at end of file +MetamorphicContract:testMorphingContract() (gas: 243186) \ No newline at end of file diff --git a/foundry.toml b/foundry.toml index 5a57ae4..0b06ea6 100644 --- a/foundry.toml +++ b/foundry.toml @@ -5,7 +5,7 @@ out = "out" # the output directory (for artifacts) libs = ["lib"] # a list of library directories cache = true # whether to cache builds or not cache_path = "cache" # where the cache is stored if enabled -solc_version = "0.8.26" # override for the solc version +solc_version = "0.8.27" # override for the solc version evm_version = "cancun" # set the EVM target version optimizer = true # enable the solc optimiser optimizer_runs = 999_999 # the number of optimiser runs diff --git a/test/MetamorphicContract.t.sol b/test/MetamorphicContract.t.sol index 75ea7b7..b22b76e 100644 --- a/test/MetamorphicContract.t.sol +++ b/test/MetamorphicContract.t.sol @@ -1,5 +1,5 @@ // SPDX-License-Identifier: WTFPL -pragma solidity 0.8.26; +pragma solidity 0.8.27; import {Test} from "forge-std/Test.sol";