Skip to content

Commit

Permalink
Release v4.9.0 (#4272)
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
Co-authored-by: Francisco <fg@frang.io>
  • Loading branch information
3 people committed May 23, 2023
1 parent 813cc2b commit 54b3f14
Show file tree
Hide file tree
Showing 140 changed files with 103 additions and 356 deletions.
7 changes: 0 additions & 7 deletions .changeset/beige-buses-drop.md

This file was deleted.

7 changes: 0 additions & 7 deletions .changeset/curvy-shrimps-enjoy.md

This file was deleted.

7 changes: 0 additions & 7 deletions .changeset/curvy-suns-sort.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/early-oranges-raise.md

This file was deleted.

7 changes: 0 additions & 7 deletions .changeset/famous-rules-burn.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/five-ducks-develop.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/five-poets-mix.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/flat-deers-end.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/four-bats-sniff.md

This file was deleted.

7 changes: 0 additions & 7 deletions .changeset/funny-rockets-compete.md

This file was deleted.

7 changes: 0 additions & 7 deletions .changeset/gold-chicken-clean.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/happy-socks-travel.md

This file was deleted.

7 changes: 0 additions & 7 deletions .changeset/healthy-squids-stare.md

This file was deleted.

7 changes: 0 additions & 7 deletions .changeset/lemon-dogs-kiss.md

This file was deleted.

7 changes: 0 additions & 7 deletions .changeset/little-kiwis-ring.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/loud-wolves-promise.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/lovely-dragons-appear.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/modern-games-exist.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/new-ways-own.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/ninety-hornets-kick.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/perfect-insects-listen.md

This file was deleted.

45 changes: 0 additions & 45 deletions .changeset/pre.json

This file was deleted.

7 changes: 0 additions & 7 deletions .changeset/pretty-hornets-play.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/proud-comics-deliver.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/short-roses-judge.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/silent-dancers-type.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/slimy-knives-hug.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/small-cars-appear.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/small-terms-sleep.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/strong-bulldogs-buy.md

This file was deleted.

7 changes: 0 additions & 7 deletions .changeset/tame-ladybugs-sit.md

This file was deleted.

7 changes: 0 additions & 7 deletions .changeset/tender-needles-dance.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/thin-dragons-report.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/thirty-swans-exercise.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/violet-frogs-hide.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/warm-masks-obey.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/yellow-swans-cover.md

This file was deleted.

6 changes: 1 addition & 5 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,7 @@
# Changelog


## 4.9.0-rc.1 (2023-05-12)

- `AccessControlDefaultAdminRules`: Clean up pending admin schedule on renounce. ([#4243](https://github.com/OpenZeppelin/openzeppelin-contracts/pull/4243))

## 4.9.0-rc.0 (2023-05-09)
## 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))
- `ERC721Wrapper`: add a new extension of the `ERC721` token which wraps an underlying token. Deposit and withdraw guarantee that the ownership of each token is backed by a corresponding underlying token with the same identifier. ([#3863](https://github.com/OpenZeppelin/openzeppelin-contracts/pull/3863))
Expand Down
2 changes: 1 addition & 1 deletion contracts/access/AccessControl.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-rc.0) (access/AccessControl.sol)
// OpenZeppelin Contracts (last updated v4.9.0) (access/AccessControl.sol)

pragma solidity ^0.8.0;

Expand Down
2 changes: 1 addition & 1 deletion contracts/access/AccessControlDefaultAdminRules.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-rc.1) (access/AccessControlDefaultAdminRules.sol)
// OpenZeppelin Contracts (last updated v4.9.0) (access/AccessControlDefaultAdminRules.sol)

pragma solidity ^0.8.0;

Expand Down
2 changes: 1 addition & 1 deletion contracts/access/IAccessControlDefaultAdminRules.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-rc.0) (access/IAccessControlDefaultAdminRules.sol)
// OpenZeppelin Contracts (last updated v4.9.0) (access/IAccessControlDefaultAdminRules.sol)

pragma solidity ^0.8.0;

Expand Down
2 changes: 1 addition & 1 deletion contracts/access/Ownable.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-rc.0) (access/Ownable.sol)
// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

Expand Down
2 changes: 1 addition & 1 deletion contracts/access/Ownable2Step.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-rc.0) (access/Ownable2Step.sol)
// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable2Step.sol)

pragma solidity ^0.8.0;

Expand Down
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-rc.0) (crosschain/polygon/CrossChainEnabledPolygonChild.sol)
// OpenZeppelin Contracts (last updated v4.9.0) (crosschain/polygon/CrossChainEnabledPolygonChild.sol)

pragma solidity ^0.8.4;

Expand Down
2 changes: 1 addition & 1 deletion contracts/finance/VestingWallet.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-rc.0) (finance/VestingWallet.sol)
// OpenZeppelin Contracts (last updated v4.9.0) (finance/VestingWallet.sol)
pragma solidity ^0.8.0;

import "../token/ERC20/utils/SafeERC20.sol";
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-rc.0) (governance/Governor.sol)
// OpenZeppelin Contracts (last updated v4.9.0) (governance/Governor.sol)

pragma solidity ^0.8.0;

Expand Down
2 changes: 1 addition & 1 deletion contracts/governance/IGovernor.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-rc.0) (governance/IGovernor.sol)
// OpenZeppelin Contracts (last updated v4.9.0) (governance/IGovernor.sol)

pragma solidity ^0.8.0;

Expand Down
2 changes: 1 addition & 1 deletion contracts/governance/TimelockController.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-rc.0) (governance/TimelockController.sol)
// OpenZeppelin Contracts (last updated v4.9.0) (governance/TimelockController.sol)

pragma solidity ^0.8.0;

Expand Down
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-rc.0) (governance/compatibility/GovernorCompatibilityBravo.sol)
// OpenZeppelin Contracts (last updated v4.9.0) (governance/compatibility/GovernorCompatibilityBravo.sol)

pragma solidity ^0.8.0;

Expand Down
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-rc.0) (governance/compatibility/IGovernorCompatibilityBravo.sol)
// OpenZeppelin Contracts (last updated v4.9.0) (governance/compatibility/IGovernorCompatibilityBravo.sol)

pragma solidity ^0.8.0;

Expand Down
2 changes: 1 addition & 1 deletion contracts/governance/extensions/GovernorCountingSimple.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-rc.0) (governance/extensions/GovernorCountingSimple.sol)
// OpenZeppelin Contracts (last updated v4.9.0) (governance/extensions/GovernorCountingSimple.sol)

pragma solidity ^0.8.0;

Expand Down
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-rc.0) (governance/extensions/GovernorPreventLateQuorum.sol)
// OpenZeppelin Contracts (last updated v4.9.0) (governance/extensions/GovernorPreventLateQuorum.sol)

pragma solidity ^0.8.0;

Expand Down

0 comments on commit 54b3f14

Please sign in to comment.