diff --git a/src/Facets/GasZipFacet.sol b/src/Facets/GasZipFacet.sol index d0d27eb94..e275409a4 100644 --- a/src/Facets/GasZipFacet.sol +++ b/src/Facets/GasZipFacet.sol @@ -14,7 +14,7 @@ import { InvalidCallData, CannotBridgeToSameNetwork, InvalidAmount } from "lifi/ /// @title GasZipFacet /// @author LI.FI (https://li.fi) /// @notice Provides functionality to swap ERC20 tokens to native and deposit them to the gas.zip protocol (https://www.gas.zip/) -/// @custom:version 2.0.0 +/// @custom:version 2.0.1 contract GasZipFacet is ILiFi, ReentrancyGuard, SwapperV2, Validatable { using SafeTransferLib for address; diff --git a/src/Libraries/LibAsset.sol b/src/Libraries/LibAsset.sol index 8ca9f3255..e4462eb52 100644 --- a/src/Libraries/LibAsset.sol +++ b/src/Libraries/LibAsset.sol @@ -6,7 +6,7 @@ import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import { LibSwap } from "./LibSwap.sol"; /// @title LibAsset -/// @custom:version 1.0.1 +/// @custom:version 1.0.2 /// @notice This library contains helpers for dealing with onchain transfers /// of assets, including accounting for the native asset `assetId` /// conventions and any noncompliant ERC20 transfers diff --git a/src/Periphery/GasZipPeriphery.sol b/src/Periphery/GasZipPeriphery.sol index f0555d109..8196a53d9 100644 --- a/src/Periphery/GasZipPeriphery.sol +++ b/src/Periphery/GasZipPeriphery.sol @@ -13,7 +13,7 @@ import { InvalidCallData } from "../Errors/GenericErrors.sol"; /// @title GasZipPeriphery /// @author LI.FI (https://li.fi) /// @notice Provides functionality to swap ERC20 tokens to use the gas.zip protocol as a pre-bridge step (https://www.gas.zip/) -/// @custom:version 1.0.0 +/// @custom:version 1.0.1 contract GasZipPeriphery is ILiFi, WithdrawablePeriphery { using SafeTransferLib for address; diff --git a/src/Periphery/Permit2Proxy.sol b/src/Periphery/Permit2Proxy.sol index dc099f757..c4eb6892d 100644 --- a/src/Periphery/Permit2Proxy.sol +++ b/src/Periphery/Permit2Proxy.sol @@ -11,7 +11,7 @@ import { WithdrawablePeriphery } from "lifi/Helpers/WithdrawablePeriphery.sol"; /// @author LI.FI (https://li.fi) /// @notice Proxy contract allowing gasless calls via Permit2 as well as making /// token approvals via ERC20 Permit (EIP-2612) to our diamond contract -/// @custom:version 1.0.0 +/// @custom:version 1.0.1 contract Permit2Proxy is WithdrawablePeriphery { /// Storage /// diff --git a/src/Periphery/ReceiverAcrossV3.sol b/src/Periphery/ReceiverAcrossV3.sol index c29380585..c77e07b75 100644 --- a/src/Periphery/ReceiverAcrossV3.sol +++ b/src/Periphery/ReceiverAcrossV3.sol @@ -12,7 +12,7 @@ import { SafeTransferLib } from "solady/utils/SafeTransferLib.sol"; /// @title ReceiverAcrossV3 /// @author LI.FI (https://li.fi) /// @notice Arbitrary execution contract used for cross-chain swaps and message passing via AcrossV3 -/// @custom:version 1.0.1 +/// @custom:version 1.0.2 contract ReceiverAcrossV3 is ILiFi, TransferrableOwnership { using SafeTransferLib for address;