From ac5480e7caa8544da5ca629524bf11ea9af2751a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ernesto=20Garc=C3=ADa?= Date: Wed, 14 Jun 2023 14:11:37 -0600 Subject: [PATCH] Merge release-v4.9 branch (#4352) --- CHANGELOG.md | 4 ++++ contracts/governance/Governor.sol | 2 +- contracts/package.json | 2 +- package.json | 2 +- 4 files changed, 7 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9d4e13046..abbb1b347 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -59,6 +59,10 @@ function supportsInterface(bytes4 interfaceId) public view virtual override retu } ``` +## 4.9.1 (2023-06-07) + +- `Governor`: Add a mechanism to restrict the address of the proposer using a suffix in the description. + ## 4.9.0 (2023-05-23) - `ReentrancyGuard`: Add a `_reentrancyGuardEntered` function to expose the guard status. ([#3714](https://github.com/OpenZeppelin/openzeppelin-contracts/pull/3714)) diff --git a/contracts/governance/Governor.sol b/contracts/governance/Governor.sol index b42fe1034..83bbfb083 100644 --- a/contracts/governance/Governor.sol +++ b/contracts/governance/Governor.sol @@ -1,5 +1,5 @@ // SPDX-License-Identifier: MIT -// OpenZeppelin Contracts (last updated v4.9.0) (governance/Governor.sol) +// OpenZeppelin Contracts (last updated v4.9.1) (governance/Governor.sol) pragma solidity ^0.8.19; diff --git a/contracts/package.json b/contracts/package.json index 4d0f576bb..4711a6b3f 100644 --- a/contracts/package.json +++ b/contracts/package.json @@ -1,7 +1,7 @@ { "name": "@openzeppelin/contracts", "description": "Secure Smart Contract library for Solidity", - "version": "4.9.0", + "version": "4.9.1", "files": [ "**/*.sol", "/build/contracts/*.json", diff --git a/package.json b/package.json index c070915f9..c44154133 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "openzeppelin-solidity", "description": "Secure Smart Contract library for Solidity", - "version": "4.9.0", + "version": "4.9.1", "files": [ "/contracts/**/*.sol", "/build/contracts/*.json",