Skip to content

Commit

Permalink
version # + changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
ranaroussi committed Oct 3, 2019
1 parent da0524c commit b8d6980
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
Change Log
===========

0.0.22
------
- Fixed issue where daily return >= 100%
- Fixed Snapshot plot
- Removed duplicaated code
- Added conda installer
- Misc code refactoring and optimizations

0.0.21
------
- Fixed chart EOY chart's `xticks` when charting data with 10+ years
Expand Down
2 changes: 1 addition & 1 deletion quantstats/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.

__version__ = "0.0.21"
__version__ = "0.0.22"
__author__ = "Ran Aroussi"

from . import stats, utils, plots, reports
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

setup(
name='QuantStats',
version='0.0.21',
version='0.0.22',
description='Portfolio analytics for quants',
long_description=long_description,
url='https://github.com/ranaroussi/quantstats',
Expand Down Expand Up @@ -60,7 +60,7 @@
quantitative-analysis algo-trading visualization plotting""",
packages=find_packages(exclude=['contrib', 'docs', 'tests', 'examples']),
install_requires=['pandas>=0.24.0', 'numpy>=1.15.0', 'scipy>=1.2.0',
'matplotlib>=3.0.0', 'seaborn>=0.9.0',
'matplotlib==3.1.0', 'seaborn>=0.9.0',
'tabulate>=0.8.0', 'yfinance>=0.1.44'],
entry_points={
'console_scripts': [
Expand Down

0 comments on commit b8d6980

Please sign in to comment.