From 2e072caf4675ba8bc488f76536fcaa00f0864212 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C4=83lina=20Cenan?= Date: Thu, 16 Sep 2021 12:45:53 +0300 Subject: [PATCH] Upgrade contracts dependency. (#484) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Upgrade contracts dependency. * Bump version: 0.6.0 → 0.6.1 --- .bumpversion.cfg | 2 +- ocean_lib/__init__.py | 2 +- setup.py | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 0466dce64..0cd8b3110 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.6.0 +current_version = 0.6.1 commit = True tag = True diff --git a/ocean_lib/__init__.py b/ocean_lib/__init__.py index 5aab0a58d..5c269e653 100644 --- a/ocean_lib/__init__.py +++ b/ocean_lib/__init__.py @@ -7,5 +7,5 @@ __author__ = """OceanProtocol""" # fmt: off -__version__ = '0.6.0' +__version__ = '0.6.1' # fmt: on diff --git a/setup.py b/setup.py index 1a4bd89c0..d2c319996 100644 --- a/setup.py +++ b/setup.py @@ -18,7 +18,7 @@ # Installed by pip install ocean-lib # or pip install -e . install_requirements = [ - "ocean-contracts==0.6.5", + "ocean-contracts==0.6.7", "coloredlogs", "pyopenssl", "PyJWT", # not jwt @@ -99,7 +99,7 @@ url="https://github.com/oceanprotocol/ocean.py", # fmt: off # bumpversion.sh needs single-quotes - version='0.6.0', + version='0.6.1', # fmt: on zip_safe=False, )