Skip to content

Commit 1955146

Browse files
author
llllllllll
committed
REL: 0.8.0
1 parent 5c57be8 commit 1955146

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

docs/source/beginner-tutorial.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ on OSX):
117117
[--capital_base CAPITAL_BASE] [--source {yahoo}] [--source_time_column SOURCE_TIME_COLUMN] [--symbols SYMBOLS]
118118
[--output OUTPUT] [--metadata_path METADATA_PATH] [--metadata_index METADATA_INDEX] [--print-algo] [--no-print-algo]
119119
120-
Zipline version 0.8.0rc1.
120+
Zipline version 0.8.0.
121121
122122
optional arguments:
123123
-h, --help show this help message and exit

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ def pre_setup():
192192

193193
setup(
194194
name='zipline',
195-
version='0.8.0rc1',
195+
version='0.8.0',
196196
description='A backtester for financial algorithms.',
197197
author='Quantopian Inc.',
198198
author_email='opensource@quantopian.com',

zipline/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#
2-
# Copyright 2013 Quantopian, Inc.
2+
# Copyright 2015 Quantopian, Inc.
33
#
44
# Licensed under the Apache License, Version 2.0 (the "License");
55
# you may not use this file except in compliance with the License.
@@ -20,7 +20,7 @@
2020
# This is *not* a place to dump arbitrary classes/modules for convenience,
2121
# it is a place to expose the public interfaces.
2222

23-
__version__ = "0.8.0rc1"
23+
__version__ = "0.8.0"
2424

2525
from . import data
2626
from . import finance

0 commit comments

Comments
 (0)