Skip to content

Commit 464f8fd

Browse files
Transpile bc96591
1 parent 46b23f8 commit 464f8fd

File tree

7 files changed

+15
-6
lines changed

7 files changed

+15
-6
lines changed

.changeset/pre.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
"chilled-spiders-attack",
1616
"clever-bats-kick",
1717
"clever-pumas-beg",
18+
"dull-ghosts-sip",
1819
"eight-peaches-guess",
1920
"eighty-crabs-listen",
2021
"eighty-lemons-shake",
@@ -28,6 +29,7 @@
2829
"fresh-birds-kiss",
2930
"green-pumpkins-end",
3031
"grumpy-bulldogs-call",
32+
"grumpy-poets-rush",
3133
"grumpy-worms-tease",
3234
"happy-falcons-walk",
3335
"healthy-gorillas-applaud",
@@ -50,6 +52,7 @@
5052
"proud-seals-complain",
5153
"proud-spiders-attend",
5254
"purple-cats-cheer",
55+
"purple-squids-attend",
5356
"quiet-trainers-kick",
5457
"red-dots-fold",
5558
"rotten-insects-wash",

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
# Changelog
22

33

4+
## 5.0.0-rc.1 (2023-09-28)
5+
6+
- Upgradeable Contracts: No longer transpile interfaces, libraries, and stateless contracts. ([#4636](https://github.com/OpenZeppelin/openzeppelin-contracts/pull/4636))
7+
- `AccessManager`, `AccessManaged`, `GovernorTimelockAccess`: Ensure that calldata shorter than 4 bytes is not padded to 4 bytes. ([#4624](https://github.com/OpenZeppelin/openzeppelin-contracts/pull/4624))
8+
- `AccessManager`: Use named return parameters in functions that return multiple values. ([#4624](https://github.com/OpenZeppelin/openzeppelin-contracts/pull/4624))
9+
410
## 5.0.0-rc.0 (2023-09-19)
511

612
- `ERC1155Receiver`: Removed in favor of `ERC1155Holder`. ([#4450](https://github.com/OpenZeppelin/openzeppelin-contracts/pull/4450))

contracts/access/manager/AccessManagedUpgradeable.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 v5.0.0-rc.0) (access/manager/AccessManaged.sol)
2+
// OpenZeppelin Contracts (last updated v5.0.0-rc.1) (access/manager/AccessManaged.sol)
33

44
pragma solidity ^0.8.20;
55

contracts/access/manager/AccessManagerUpgradeable.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 v5.0.0-rc.0) (access/manager/AccessManager.sol)
2+
// OpenZeppelin Contracts (last updated v5.0.0-rc.1) (access/manager/AccessManager.sol)
33

44
pragma solidity ^0.8.20;
55

contracts/governance/extensions/GovernorTimelockAccessUpgradeable.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 v5.0.0-rc.0) (governance/extensions/GovernorTimelockAccess.sol)
2+
// OpenZeppelin Contracts (last updated v5.0.0-rc.1) (governance/extensions/GovernorTimelockAccess.sol)
33

44
pragma solidity ^0.8.20;
55

contracts/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@openzeppelin/contracts-upgradeable",
33
"description": "Secure Smart Contract library for Solidity",
4-
"version": "5.0.0-rc.0",
4+
"version": "5.0.0-rc.1",
55
"files": [
66
"**/*.sol",
77
"/build/contracts/*.json",
@@ -30,6 +30,6 @@
3030
},
3131
"homepage": "https://openzeppelin.com/contracts/",
3232
"peerDependencies": {
33-
"@openzeppelin/contracts": "5.0.0-rc.0"
33+
"@openzeppelin/contracts": "5.0.0-rc.1"
3434
}
3535
}

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": "5.0.0-rc.0",
4+
"version": "5.0.0-rc.1",
55
"private": true,
66
"files": [
77
"/contracts/**/*.sol",

0 commit comments

Comments
 (0)