From b17a278988f72223db4c7405bae23776f18b323d Mon Sep 17 00:00:00 2001 From: ssallam Date: Wed, 2 Sep 2020 16:30:19 +0200 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.3.0=20=E2=86=92=200.3.1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.cfg | 2 +- docs/source/conf.py | 2 +- ocean_lib/__init__.py | 2 +- setup.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 6fb9e773c..a35133c7a 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.3.0 +current_version = 0.3.1 commit = True tag = True diff --git a/docs/source/conf.py b/docs/source/conf.py index cdd6b2b9b..748d0ddcb 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -30,7 +30,7 @@ author = 'ocean-lib-py contributors' # The full version, including alpha/beta/rc tags -release = '0.3.0' +release = '0.3.1' # The short X.Y version release_parts = release.split('.') # a list version = release_parts[0] + '.' + release_parts[1] diff --git a/ocean_lib/__init__.py b/ocean_lib/__init__.py index 9cf519296..155dc09e9 100644 --- a/ocean_lib/__init__.py +++ b/ocean_lib/__init__.py @@ -1,5 +1,5 @@ __author__ = """OceanProtocol""" -__version__ = '0.3.0' +__version__ = '0.3.1' # Copyright 2018 Ocean Protocol Foundation # SPDX-License-Identifier: Apache-2.0 diff --git a/setup.py b/setup.py index 120070c35..06cc57119 100644 --- a/setup.py +++ b/setup.py @@ -97,6 +97,6 @@ test_suite='tests', tests_require=test_requirements, url='https://github.com/oceanprotocol/ocean-lib-py', - version='0.3.0', + version='0.3.1', zip_safe=False, )