Skip to content

Commit

Permalink
Bump version: 0.7.0 → 0.7.0rc1
Browse files Browse the repository at this point in the history
  • Loading branch information
twiecki committed Jul 18, 2014
1 parent d6f2627 commit 8d16efc
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
@@ -1,7 +1,7 @@
[bumpversion]
commit = True
tag = True
current_version = 0.7.0
current_version = 0.7.0rc1
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\-(?P<release>[a-z]+))?
serialize =
{major}.{minor}.{patch}rc{release}
Expand Down
6 changes: 3 additions & 3 deletions conda/zipline/meta.yaml
@@ -1,10 +1,10 @@
package:
name: zipline
version: 0.7.0
version: 0.7.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.7.0rc1.tar.gz
url: https://pypi.python.org/packages/source/z/zipline/zipline-0.7.0rc1.tar.gz
md5: e07499447eccdfc97d57478daef4d114

requirements:
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -42,7 +42,7 @@

setup(
name='zipline',
version='0.7.0',
version='0.7.0rc1',
description='A backtester for financial algorithms.',
author='Quantopian Inc.',
author_email='opensource@quantopian.com',
Expand Down
2 changes: 1 addition & 1 deletion zipline/__init__.py
Expand Up @@ -20,7 +20,7 @@
# 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.7.0rc1"

from . import data
from . import finance
Expand Down

0 comments on commit 8d16efc

Please sign in to comment.