Skip to content

Commit

Permalink
version0.11.2
Browse files Browse the repository at this point in the history
  • Loading branch information
refraction-ray committed Jan 1, 2021
1 parent 1070b8b commit 79d3d7e
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Expand Up @@ -2,6 +2,8 @@

## Unreleased

## v0.11.2 - 2021.01.01

### added

- 修复了 `get_rt` 获取基金实时净值
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -16,7 +16,7 @@

setuptools.setup(
name="xalpha",
version="0.11.1",
version="0.11.2",
author="refraction-ray",
author_email="refraction-ray@protonmail.com",
description="all about fund investment",
Expand Down
2 changes: 1 addition & 1 deletion tests/test_universal.py
Expand Up @@ -46,7 +46,7 @@ def test_get_fund():


def test_get_fund_pt():
df = xa.get_daily("pt-F100032")
df = xa.get_daily("pt-F100032", start="20191201")
assert round(df[df["date"] < "2020-01-01"].iloc[-1]["bond_ratio"], 2) == 0.08


Expand Down
2 changes: 1 addition & 1 deletion xalpha/__init__.py
@@ -1,4 +1,4 @@
__version__ = "0.11.1"
__version__ = "0.11.2"
__author__ = "refraction-ray"
__name__ = "xalpha"

Expand Down

0 comments on commit 79d3d7e

Please sign in to comment.