diff --git a/CHANGELOG.md b/CHANGELOG.md index 07b1ee7..46ab0ca 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +## [2.0.3-dev.1](https://github.com/VenusProtocol/solidity-utilities/compare/v2.0.2...v2.0.3-dev.1) (2024-05-16) + + +### Bug Fixes + +* TimeManagerV5 deprecated storage slot size ([a1c1832](https://github.com/VenusProtocol/solidity-utilities/commit/a1c18320e910a647f99353aa330007a14da492fd)) + ## [2.0.2](https://github.com/VenusProtocol/solidity-utilities/compare/v2.0.1...v2.0.2) (2024-05-14) diff --git a/contracts/TimeManagerV5.sol b/contracts/TimeManagerV5.sol index b6305fc..2c0f95d 100644 --- a/contracts/TimeManagerV5.sol +++ b/contracts/TimeManagerV5.sol @@ -15,7 +15,7 @@ contract TimeManagerV5 { bool private isInitialized; /// @notice Deprecated slot for _getCurrentSlot function pointer - bytes32 private __deprecatedSlot1; + bytes8 private __deprecatedSlot1; /** * @dev This empty reserved space is put in place to allow future versions to add new diff --git a/package.json b/package.json index f8d0507..176ca33 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@venusprotocol/solidity-utilities", - "version": "2.0.2", + "version": "2.0.3-dev.1", "description": "Solidity code used by other Venus projects", "files": [ "artifacts",