From f8e5c8dc12a668a67217986c6e6d18bdefcc4f53 Mon Sep 17 00:00:00 2001 From: vicnaum Date: Tue, 6 Feb 2024 13:14:32 +0100 Subject: [PATCH] misc: LensVersion updated with latest commit and v2.0.4 --- contracts/base/LensVersion.sol | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/contracts/base/LensVersion.sol b/contracts/base/LensVersion.sol index a2c0f50..7582cde 100644 --- a/contracts/base/LensVersion.sol +++ b/contracts/base/LensVersion.sol @@ -7,9 +7,9 @@ import {Errors} from 'contracts/libraries/constants/Errors.sol'; import {TransparentUpgradeableProxy} from '@openzeppelin/contracts/proxy/transparent/TransparentUpgradeableProxy.sol'; contract LensVersion is ILensVersion { - string internal constant version = '2.0.3'; + string internal constant version = '2.0.4'; - bytes20 internal constant gitCommit = hex'3bb1438b28b69f584ab9a290f261e3452fd34ad0'; + bytes20 internal constant gitCommit = hex'91fb968ff155ed065dad4146f65a1a8c45b8f922'; event LensUpgradeVersion(address implementation, string version, bytes20 gitCommit, uint256 timestamp);