Skip to content

Commit

Permalink
release 1.2.4
Browse files Browse the repository at this point in the history
  • Loading branch information
fasiondog committed Jun 30, 2022
1 parent cad31cc commit aaf3f25
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
2 changes: 2 additions & 0 deletions docs/source/release.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@
-------------------------

1. 修复 trade_manage持久化,费率设置为TC_FixedA2017会造成持久化中断
2. 修改 TradeManager::getFunds 中的截止时间 23:59 分被误写为 11:59 分
3. 修复订单代理失效


1.2.3 - 2022年3月6日
Expand Down
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -343,10 +343,11 @@ def install():
@click.command()
def wheel():
@click.option('-j', '--j', default=2, help="并行编译数量")
def wheel(j):
""" 生成 python 的 wheel 安装包 """
# 尝试编译
start_build(False, 'release')
start_build(False, 'release', j)
# 清理之前遗留的打包产物
print("Clean up the before papackaging outputs ...")
Expand Down
2 changes: 1 addition & 1 deletion xmake.lua
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ if not is_plat("windows") then
end

-- version
set_version("1.2.3", {build="%Y%m%d%H%M"})
set_version("1.2.4", {build="%Y%m%d%H%M"})
set_configvar("LOG_ACTIVE_LEVEL", 0) -- 激活的日志级别
--if is_mode("debug") then
-- set_configvar("LOG_ACTIVE_LEVEL", 0) -- 激活的日志级别
Expand Down

0 comments on commit aaf3f25

Please sign in to comment.