From 44abeb071c682e02485a292cf2557c42766ae4ca Mon Sep 17 00:00:00 2001 From: leovct Date: Wed, 8 Nov 2023 10:44:25 +0100 Subject: [PATCH 1/2] chore: bump to solidity `0.8.21` --- src/TinyENS.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/TinyENS.sol b/src/TinyENS.sol index d227512..0df4e1b 100644 --- a/src/TinyENS.sol +++ b/src/TinyENS.sol @@ -1,5 +1,5 @@ // SPDX-License-Identifier: UNLICENSED -pragma solidity ^0.8.13; +pragma solidity ^0.8.21; /// @notice Interface for TinyENS. interface ITinyENS { From 3c5eb3cd11612d86b53f081161650d84fdb51e1b Mon Sep 17 00:00:00 2001 From: leovct Date: Wed, 8 Nov 2023 10:48:28 +0100 Subject: [PATCH 2/2] chore: use `GPL-3.0` license --- src/TinyENS.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/TinyENS.sol b/src/TinyENS.sol index 0df4e1b..059bfaf 100644 --- a/src/TinyENS.sol +++ b/src/TinyENS.sol @@ -1,4 +1,4 @@ -// SPDX-License-Identifier: UNLICENSED +// SPDX-License-Identifier: GPL-3.0 pragma solidity ^0.8.21; /// @notice Interface for TinyENS.