Skip to content

Commit

Permalink
feat: bump sol version
Browse files Browse the repository at this point in the history
  • Loading branch information
0xAustrian committed Aug 28, 2024
1 parent fee01d4 commit 3b6bba3
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion contracts/extensions/contracts/AllocationExtension.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: AGPL-3.0-only
pragma solidity 0.8.19;
pragma solidity ^0.8.19;

import {IAllocationExtension} from "contracts/extensions/interfaces/IAllocationExtension.sol";
import {CoreBaseStrategy} from "contracts/strategies/CoreBaseStrategy.sol";
Expand Down
2 changes: 1 addition & 1 deletion contracts/extensions/interfaces/IAllocationExtension.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: AGPL-3.0-only
pragma solidity 0.8.19;
pragma solidity ^0.8.19;

interface IAllocationExtension {
/// @dev Error thrown when the allocation timestamps are invalid
Expand Down
2 changes: 1 addition & 1 deletion test/foundry/extensions/AllocationExtensionUnit.t.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: UNLICENSED
pragma solidity 0.8.19;
pragma solidity ^0.8.19;

import {Test} from "forge-std/Test.sol";
import {MockMockAllocationExtension} from "test/smock/MockMockAllocationExtension.sol";
Expand Down
2 changes: 1 addition & 1 deletion test/utils/mocks/MockAllocationExtension.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: AGPL-3.0-only
pragma solidity 0.8.19;
pragma solidity ^0.8.19;

import {AllocationExtension} from "contracts/extensions/contracts/AllocationExtension.sol";
import {CoreBaseStrategy} from "contracts/strategies/CoreBaseStrategy.sol";
Expand Down

0 comments on commit 3b6bba3

Please sign in to comment.