Skip to content

Commit

Permalink
Bump version: 0.8.0 → 0.8.0rc1
Browse files Browse the repository at this point in the history
  • Loading branch information
twiecki committed Feb 13, 2015
1 parent edadd63 commit 21c23c3
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -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}
Expand Down
6 changes: 3 additions & 3 deletions conda/zipline/meta.yaml
Original file line number Diff line number Diff line change
@@ -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:
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

setup(
name='zipline',
version='0.7.0',
version='0.8.0rc1',
description='A backtester for financial algorithms.',
author='Quantopian Inc.',
author_email='[email protected]',
Expand Down
2 changes: 1 addition & 1 deletion zipline/__init__.py
Original file line number Diff line number Diff line change
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.8.0rc1"

from . import data
from . import finance
Expand Down

0 comments on commit 21c23c3

Please sign in to comment.