From 78c6b0d5afb4448fd40341decdd8b753a9846e90 Mon Sep 17 00:00:00 2001 From: El De-dog-lo <3859395+fubuloubu@users.noreply.github.com> Date: Thu, 27 May 2021 17:36:18 -0400 Subject: [PATCH] chore: update API version to v0.4.1 (#382) --- contracts/BaseStrategy.sol | 2 +- contracts/Vault.vy | 2 +- ethpm-config.yaml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/contracts/BaseStrategy.sol b/contracts/BaseStrategy.sol index de0eac0b..ef68d0e6 100644 --- a/contracts/BaseStrategy.sol +++ b/contracts/BaseStrategy.sol @@ -188,7 +188,7 @@ abstract contract BaseStrategy { * @return A string which holds the current API version of this contract. */ function apiVersion() public pure returns (string memory) { - return "0.4.0"; + return "0.4.1"; } /** diff --git a/contracts/Vault.vy b/contracts/Vault.vy index a2f7b437..34c1e90b 100644 --- a/contracts/Vault.vy +++ b/contracts/Vault.vy @@ -35,7 +35,7 @@ https://github.com/iearn-finance/yearn-vaults/blob/master/SPECIFICATION.md """ -API_VERSION: constant(String[28]) = "0.4.0" +API_VERSION: constant(String[28]) = "0.4.1" from vyper.interfaces import ERC20 diff --git a/ethpm-config.yaml b/ethpm-config.yaml index eedc5e2d..b96d9625 100644 --- a/ethpm-config.yaml +++ b/ethpm-config.yaml @@ -1,5 +1,5 @@ package_name: vault -version: 0.4.0 +version: 0.4.1 settings: deployment_networks: - mainnet