Bump version: 0.8.0 → 0.8.0rc1

This commit is contained in:
Thomas Wiecki
2015-02-13 17:53:02 +01:00
parent edadd63bd3
commit 21c23c324d
4 changed files with 6 additions and 6 deletions
+1 -1
View File
@@ -1,7 +1,7 @@
[bumpversion]
commit = True
tag = True
current_version = 0.7.0
current_version = 0.8.0rc1
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\-(?P<release>[a-z]+))?
serialize =
{major}.{minor}.{patch}rc{release}
+3 -3
View File
@@ -1,10 +1,10 @@
package:
name: zipline
version: 0.7.0
version: 0.8.0rc1
source:
fn: zipline-0.7.0.tar.gz
url: https://pypi.python.org/packages/source/z/zipline/zipline-0.7.0.tar.gz
fn: zipline-0.8.0rc1.tar.gz
url: https://pypi.python.org/packages/source/z/zipline/zipline-0.8.0rc1.tar.gz
md5: 62d45c3c0d9a624e787b7e413937f7b4
requirements:
+1 -1
View File
@@ -18,7 +18,7 @@ from setuptools import setup, find_packages
setup(
name='zipline',
version='0.7.0',
version='0.8.0rc1',
description='A backtester for financial algorithms.',
author='Quantopian Inc.',
author_email='opensource@quantopian.com',
+1 -1
View File
@@ -20,7 +20,7 @@ Zipline
# This is *not* a place to dump arbitrary classes/modules for convenience,
# it is a place to expose the public interfaces.
__version__ = "0.7.0"
__version__ = "0.8.0rc1"
from . import data
from . import finance