Skip to content

Commit ef6cfba

Browse files
committed
up
1 parent 787d972 commit ef6cfba

File tree

13 files changed

+13
-13
lines changed

13 files changed

+13
-13
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
### Breaking changes
44

5-
- Update minimum pragma to 0.8.24 in `SignatureChecker`, `Governor`, Governor's extensions, `Votes`, `Strings`, `ERC1155URIStorage`, `MessageHashUtils`, `ERC721URIStorage`, `ERC721Votes`, `ERC721Wrapper`, `ERC721Burnable`, `ERC721Consecutive`, `ERC721Enumerable`, `ERC721Pausable`, `EIP712` and `ERC7739`. ([#5716](https://github.com/OpenZeppelin/openzeppelin-contracts/pull/5716)), ([#5680](https://github.com/OpenZeppelin/openzeppelin-contracts/pull/5680))
5+
- Update minimum pragma to 0.8.24 in `SignatureChecker`, `Votes`, `VotesExtended`, `ERC20Votes`, `Strings`, `ERC1155URIStorage`, `MessageHashUtils`, `ERC721URIStorage`, `ERC721Votes`, `ERC721Wrapper`, `ERC721Burnable`, `ERC721Consecutive`, `ERC721Enumerable`, `ERC721Pausable`, `ERC721Royalty`, `ERC721Wrapper`, `EIP712`, `ERC7739`, `Governor` and its extensions. ([#5716](https://github.com/OpenZeppelin/openzeppelin-contracts/pull/5716)), ([#5680](https://github.com/OpenZeppelin/openzeppelin-contracts/pull/5680))
66

77
## 5.3.0 (2025-04-09)
88

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/VotesExtendedMock.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 {VotesExtended} from "../governance/utils/VotesExtended.sol";
66

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/ERC20VotesAdditionalCheckpointsMock.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 {ERC20Votes} from "../../token/ERC20/extensions/ERC20Votes.sol";
55
import {VotesExtended, Votes} from "../../governance/utils/VotesExtended.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";

0 commit comments

Comments
 (0)