Skip to content

Commit c89daf2

Browse files
committed
up
1 parent 787d972 commit c89daf2

File tree

10 files changed

+10
-10
lines changed

10 files changed

+10
-10
lines changed

contracts/governance/utils/VotesExtended.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// SPDX-License-Identifier: MIT
22
// OpenZeppelin Contracts (last updated v5.2.0) (governance/utils/VotesExtended.sol)
3-
pragma solidity ^0.8.20;
3+
pragma solidity ^0.8.24;
44

55
import {Checkpoints} from "../../utils/structs/Checkpoints.sol";
66
import {Votes} from "./Votes.sol";

contracts/mocks/VotesMock.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// SPDX-License-Identifier: MIT
22

3-
pragma solidity ^0.8.20;
3+
pragma solidity ^0.8.24;
44

55
import {Votes} from "../governance/utils/Votes.sol";
66

contracts/mocks/docs/MyNFT.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// contracts/MyNFT.sol
22
// SPDX-License-Identifier: MIT
3-
pragma solidity ^0.8.20;
3+
pragma solidity ^0.8.24;
44

55
import {ERC721} from "../../token/ERC721/ERC721.sol";
66

contracts/mocks/docs/governance/MyToken.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// SPDX-License-Identifier: MIT
2-
pragma solidity ^0.8.20;
2+
pragma solidity ^0.8.24;
33

44
import {ERC20} from "../../../token/ERC20/ERC20.sol";
55
import {ERC20Permit} from "../../../token/ERC20/extensions/ERC20Permit.sol";

contracts/mocks/docs/governance/MyTokenTimestampBased.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// SPDX-License-Identifier: MIT
2-
pragma solidity ^0.8.20;
2+
pragma solidity ^0.8.24;
33

44
import {ERC20} from "../../../token/ERC20/ERC20.sol";
55
import {ERC20Permit} from "../../../token/ERC20/extensions/ERC20Permit.sol";

contracts/mocks/docs/governance/MyTokenWrapped.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// SPDX-License-Identifier: MIT
2-
pragma solidity ^0.8.20;
2+
pragma solidity ^0.8.24;
33

44
import {IERC20, ERC20} from "../../../token/ERC20/ERC20.sol";
55
import {ERC20Permit} from "../../../token/ERC20/extensions/ERC20Permit.sol";

contracts/mocks/token/ERC20VotesLegacyMock.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// SPDX-License-Identifier: MIT
22

3-
pragma solidity ^0.8.20;
3+
pragma solidity ^0.8.24;
44

55
import {ERC20Permit} from "../../token/ERC20/extensions/ERC20Permit.sol";
66
import {Math} from "../../utils/math/Math.sol";

contracts/token/ERC20/extensions/ERC20Votes.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// SPDX-License-Identifier: MIT
22
// OpenZeppelin Contracts (last updated v5.1.0) (token/ERC20/extensions/ERC20Votes.sol)
33

4-
pragma solidity ^0.8.20;
4+
pragma solidity ^0.8.24;
55

66
import {ERC20} from "../ERC20.sol";
77
import {Votes} from "../../../governance/utils/Votes.sol";

contracts/token/ERC721/extensions/ERC721Royalty.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// SPDX-License-Identifier: MIT
22
// OpenZeppelin Contracts (last updated v5.1.0) (token/ERC721/extensions/ERC721Royalty.sol)
33

4-
pragma solidity ^0.8.20;
4+
pragma solidity ^0.8.24;
55

66
import {ERC721} from "../ERC721.sol";
77
import {IERC165} from "../../../utils/introspection/ERC165.sol";

contracts/token/ERC721/extensions/ERC721Wrapper.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// SPDX-License-Identifier: MIT
22
// OpenZeppelin Contracts (last updated v5.1.0) (token/ERC721/extensions/ERC721Wrapper.sol)
33

4-
pragma solidity ^0.8.20;
4+
pragma solidity ^0.8.24;
55

66
import {IERC721, ERC721} from "../ERC721.sol";
77
import {IERC721Receiver} from "../IERC721Receiver.sol";

0 commit comments

Comments
 (0)