From 685e40039911fe1e5fa2393a89c154f9de8eb646 Mon Sep 17 00:00:00 2001 From: Tim Paine Date: Sat, 3 Aug 2019 16:16:12 -0400 Subject: [PATCH] bump version --- docs/conf.py | 4 ++-- pyEX/zipline/__init__.py | 2 +- setup.py | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index 79e74d7..b735834 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -57,9 +57,9 @@ # built documents. # # The short X.Y version. -version = 'v0.0.3' +version = 'v0.0.6' # The full version, including alpha/beta/rc tags. -release = 'v0.0.3' +release = 'v0.0.6' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/pyEX/zipline/__init__.py b/pyEX/zipline/__init__.py index 5fcae01..142f23c 100644 --- a/pyEX/zipline/__init__.py +++ b/pyEX/zipline/__init__.py @@ -1,4 +1,4 @@ # -*- coding: utf-8 -*- from .ingest import * # noqa: F403, F401 -__version__ = '0.0.4' +__version__ = '0.0.6' diff --git a/setup.py b/setup.py index 05ff6ce..7120bf4 100644 --- a/setup.py +++ b/setup.py @@ -12,11 +12,11 @@ setup( name='pyEX.zipline', - version='0.0.4', + version='0.0.6', description='Integrating zipline with pyEX', long_description=long_description, url='https://github.com/timkpaine/pyEX-zipline', - download_url='https://github.com/timkpaine/pyEX-zipline/archive/v0.0.4.tar.gz', + download_url='https://github.com/timkpaine/pyEX-zipline/archive/v0.0.6.tar.gz', author='Tim Paine', author_email='timothy.k.paine@gmail.com', license='Apache 2.0',