Skip to content

Commit 2ea1d67

Browse files
committed
v1.7.0
1 parent 1b91ceb commit 2ea1d67

File tree

10 files changed

+13
-14
lines changed

10 files changed

+13
-14
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ get_filename_component(PROJECT_DIR_NAME ${CMAKE_CURRENT_LIST_DIR} NAME)
88
string(REPLACE " " "_" PROJECT_DIR_NAME ${PROJECT_DIR_NAME})
99

1010
project(${PROJECT_DIR_NAME}
11-
VERSION 1.5.1 # <major>.<minor>.<patch>
11+
VERSION 1.7.0 # <major>.<minor>.<patch>
1212
LANGUAGES CXX)
1313

1414
set(LIB_NAME shift)

demo/initiator.cfg

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,7 @@ BeginString=FIXT.1.1
33
TargetCompID=BROKERAGECENTER
44
DefaultApplVerID=FIX.5.0SP2
55
ConnectionType=initiator
6-
StartTime=00:00:00
7-
EndTime=00:00:00
6+
ResetOnLogout=Y
87
TransportDataDictionary=FIXT11.xml
98
AppDataDictionary=FIX50SP2.xml
109
HeartBtInt=30

release/conda/quickfix/meta.yaml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
package:
22
name: quickfix
3-
version: "1.15.1"
3+
version: "1.15.2"
44

55
source:
6-
git_url: https://github.com/quickfix/quickfix.git
7-
git_rev: "v1.15.1"
6+
git_url: https://github.com/hanlonlab/quickfix.git
7+
# git_url: https://github.com/quickfix/quickfix.git
8+
# git_rev: "v1.15.1"
89

910
build:
1011
include_recipe: False

release/conda/shift-coreclient/meta.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package:
22
name: shift-coreclient
3-
version: "1.5.1"
3+
version: "1.7.0"
44

55
source:
66
git_url: https://github.com/hanlonlab/shift-main.git

release/conda/shift-miscutils/meta.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package:
22
name: shift-miscutils
3-
version: "1.5.1"
3+
version: "1.7.0"
44

55
source:
66
git_url: https://github.com/hanlonlab/shift-main.git

release/conda/shift-python/meta.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package:
22
name: shift-python
3-
version: "1.5.1"
3+
version: "1.7.0"
44

55
source:
66
git_url: https://github.com/hanlonlab/shift-python.git

release/docker/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ RUN conda install black
1919
RUN conda install keras
2020

2121
# Install shift-python
22-
RUN wget -qO- https://github.com/hanlonlab/shift-python/releases/download/v1.5.1/shift_python-1.5.1-conda_linux.zip | bsdtar -xvf- && \
22+
RUN wget -qO- https://github.com/hanlonlab/shift-python/releases/download/v1.7.0/shift_python-1.7.0-conda_linux.zip | bsdtar -xvf- && \
2323
cd shift* && \
2424
conda install *.tar.bz2
2525

release/docker/notebooks/initiator.cfg

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,7 @@ BeginString=FIXT.1.1
33
TargetCompID=BROKERAGECENTER
44
DefaultApplVerID=FIX.5.0SP2
55
ConnectionType=initiator
6-
StartTime=00:00:00
7-
EndTime=00:00:00
6+
ResetOnLogout=Y
87
TransportDataDictionary=FIXT11.xml
98
AppDataDictionary=FIX50SP2.xml
109
HeartBtInt=30

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ def run(self):
9696

9797
setup(
9898
name="shift",
99-
version="1.5.1",
99+
version="1.7.0",
100100
author="SHIFT",
101101
author_email="",
102102
description="Stevens High Frequency Trading (SHIFT) Simulation System Python Client",

src/SHIFT.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
PYBIND11_MODULE(shift, m)
1313
{
1414
m.doc() = "SHIFT-Python API";
15-
m.attr("__version__") = "1.5.1";
15+
m.attr("__version__") = "1.7.0";
1616

1717
py::register_exception<shift::IncorrectPasswordError>(m, "IncorrectPasswordError");
1818
py::register_exception<shift::ConnectionTimeoutError>(m, "ConnectionTimeoutError");

0 commit comments

Comments
 (0)