Skip to content
Merged
Show file tree
Hide file tree
Changes from 22 commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
2d2c5f3
Start release candidate
github-actions[bot] May 9, 2023
43eb8d1
Specify changeset PRs manually
frangio May 9, 2023
17cf519
Release v4.9.0 (rc) (#4228)
github-actions[bot] May 9, 2023
f214e47
Disable code size warnings on exposed contracts
frangio May 9, 2023
46d5a87
Fix spelling error in CHANGELOG.md (#4232)
Amxx May 10, 2023
9673c56
Clean up pending admin schedule on renounce in DefaultAdminRules (#4230)
frangio May 10, 2023
652ae92
Prevent attempt to publish to npm (#4239)
frangio May 11, 2023
e0fe936
Fix bug allowing anyone to cancel an admin renounce (#4238)
Amxx May 11, 2023
a43069e
Reduce frequency of version comment updates (#4244)
frangio May 12, 2023
4f7047c
Release v4.9.0 (rc) (#4243)
github-actions[bot] May 17, 2023
813cc2b
Exit release candidate
github-actions[bot] May 23, 2023
54b3f14
Release v4.9.0 (#4272)
github-actions[bot] May 23, 2023
a6e2671
Fix release merge script (#4273)
frangio May 23, 2023
8198205
Fix doc MyGovernor example doesn't compile (#4282)
qiweiii Jun 1, 2023
4e6deb3
Fix import substitution for docs examples
frangio Jun 1, 2023
fa3a30a
Fix typo in crosschain.adoc
JulissaDantes Jun 2, 2023
33ff9b0
Merge pull request from GHSA-5h3x-9wvq-w4m2
Amxx Jun 7, 2023
281550b
Release v4.9.1 (#4321)
github-actions[bot] Jun 7, 2023
ded8c9e
Update index.adoc (#4336)
zackrw Jun 13, 2023
9fb37a7
Merge branch 'master' into merge/release-v4.9
ernestognw Jun 14, 2023
f9199dc
Remove duplicate tests
ernestognw Jun 14, 2023
fffe013
Revert wrong conflict resolution
ernestognw Jun 14, 2023
ec47548
Update CHANGELOG.md
ernestognw Jun 14, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,10 +55,14 @@ Users that were registering EIP-165 interfaces with `_registerInterface` from `E

```solidity
function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
}
```

## 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))
Expand Down
2 changes: 1 addition & 1 deletion contracts/governance/Governor.sol
Original file line number Diff line number Diff line change
@@ -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;

Expand Down
2 changes: 1 addition & 1 deletion contracts/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down