Skip to content

Commit

Permalink
fix: Currency CNH
Browse files Browse the repository at this point in the history
  • Loading branch information
yuanou1123 committed May 8, 2024
1 parent ad9c1fb commit 4981d4e
Show file tree
Hide file tree
Showing 11 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion webull-python-sdk-core/webullsdkcore/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "0.1.5"
__version__ = "0.1.6"

import logging

Expand Down
4 changes: 2 additions & 2 deletions webull-python-sdk-demos/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@
LONG_DESCRIPTION = fp.read()

requires = [
"webull-python-sdk-mdata==0.1.5",
"webull-python-sdk-trade==0.1.5"
"webull-python-sdk-mdata==0.1.6",
"webull-python-sdk-trade==0.1.6"
]

setup_args = {
Expand Down
4 changes: 2 additions & 2 deletions webull-python-sdk-mdata/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@
LONG_DESCRIPTION = fp.read()

requires = [
"webull-python-sdk-core==0.1.5",
"webull-python-sdk-quotes-core==0.1.5"
"webull-python-sdk-core==0.1.6",
"webull-python-sdk-quotes-core==0.1.6"
]

setup_args = {
Expand Down
2 changes: 1 addition & 1 deletion webull-python-sdk-mdata/webullsdkmdata/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# coding=utf-8

__version__ = '0.1.5'
__version__ = '0.1.6'
2 changes: 1 addition & 1 deletion webull-python-sdk-quotes-core/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
"grpcio==1.51.1",
"grpcio-tools==1.51.1",
"protobuf==4.21.12",
"webull-python-sdk-core==0.1.5"
"webull-python-sdk-core==0.1.6"
]

setup_args = {
Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.1.5"
__version__ = "0.1.6"
2 changes: 1 addition & 1 deletion webull-python-sdk-trade-events-core/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"grpcio==1.51.1",
"grpcio-tools==1.51.1",
"protobuf==4.21.12",
"webull-python-sdk-core==0.1.5"
"webull-python-sdk-core==0.1.6"
]

setup_args = {
Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.1.5"
__version__ = "0.1.6"
4 changes: 2 additions & 2 deletions webull-python-sdk-trade/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@
LONG_DESCRIPTION = fp.read()

requires = [
"webull-python-sdk-trade-events-core==0.1.5",
"webull-python-sdk-core==0.1.5"
"webull-python-sdk-trade-events-core==0.1.6",
"webull-python-sdk-core==0.1.6"
]

setup_args = {
Expand Down
2 changes: 1 addition & 1 deletion webull-python-sdk-trade/webullsdktrade/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
__version__ = "0.1.5"
__version__ = "0.1.6"

2 changes: 1 addition & 1 deletion webull-python-sdk-trade/webullsdktrade/common/currency.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@


class Currency(EasyEnum):
CNY = (1, "CNY")
CNH = (1, "CNH")
CAD = (2, "CAD")
HKD = (3, "HKD")
USD = (4, "USD")
Expand Down

0 comments on commit 4981d4e

Please sign in to comment.