Skip to content

Commit ac5480e

Browse files
authored
Merge release-v4.9 branch (#4352)
1 parent ef103f3 commit ac5480e

File tree

4 files changed

+7
-3
lines changed

4 files changed

+7
-3
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,10 @@ function supportsInterface(bytes4 interfaceId) public view virtual override retu
5959
}
6060
```
6161

62+
## 4.9.1 (2023-06-07)
63+
64+
- `Governor`: Add a mechanism to restrict the address of the proposer using a suffix in the description.
65+
6266
## 4.9.0 (2023-05-23)
6367

6468
- `ReentrancyGuard`: Add a `_reentrancyGuardEntered` function to expose the guard status. ([#3714](https://github.com/OpenZeppelin/openzeppelin-contracts/pull/3714))

contracts/governance/Governor.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-
// OpenZeppelin Contracts (last updated v4.9.0) (governance/Governor.sol)
2+
// OpenZeppelin Contracts (last updated v4.9.1) (governance/Governor.sol)
33

44
pragma solidity ^0.8.19;
55

contracts/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@openzeppelin/contracts",
33
"description": "Secure Smart Contract library for Solidity",
4-
"version": "4.9.0",
4+
"version": "4.9.1",
55
"files": [
66
"**/*.sol",
77
"/build/contracts/*.json",

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "openzeppelin-solidity",
33
"description": "Secure Smart Contract library for Solidity",
4-
"version": "4.9.0",
4+
"version": "4.9.1",
55
"files": [
66
"/contracts/**/*.sol",
77
"/build/contracts/*.json",

0 commit comments

Comments
 (0)