diff --git a/lakeapi/__init__.py b/lakeapi/__init__.py index 77b90f6..4d73884 100644 --- a/lakeapi/__init__.py +++ b/lakeapi/__init__.py @@ -2,6 +2,6 @@ __author__ = """Jan Skoda""" __email__ = "skoda@jskoda.cz" -__version__ = "__version__ = '0.8.0'" +__version__ = "__version__ = '0.9.0'" from .main import load_data, list_data, available_symbols, set_default_bucket, use_sample_data, cache, set_cache_size_limit # noqa diff --git a/setup.cfg b/setup.cfg index c67646d..3554e1e 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.8.0 +current_version = 0.9.0 commit = True tag = True diff --git a/setup.py b/setup.py index 6b2e2c7..4e1dcba 100644 --- a/setup.py +++ b/setup.py @@ -51,6 +51,6 @@ test_suite='tests', tests_require=test_requirements, url='https://github.com/crypto-lake/lake-api', - version='0.8.0', + version='0.9.0', zip_safe=False, )