Skip to content

Commit

Permalink
Bump version: 0.7.0rc1 → 0.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
twiecki committed Jul 25, 2014
1 parent 6dc9c1b commit a7de021
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.0rc1
current_version = 0.7.0
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.0rc1
version: 0.7.0

source:
fn: zipline-0.7.0rc1.tar.gz
url: https://pypi.python.org/packages/source/z/zipline/zipline-0.7.0rc1.tar.gz
fn: zipline-0.7.0.tar.gz
url: https://pypi.python.org/packages/source/z/zipline/zipline-0.7.0.tar.gz
md5: 5963340584c1bddd446c09bfbbedd38c

requirements:
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@

setup(
name='zipline',
version='0.7.0rc1',
version='0.7.0',
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.0rc1"
__version__ = "0.7.0"

from . import data
from . import finance
Expand Down

0 comments on commit a7de021

Please sign in to comment.