File tree Expand file tree Collapse file tree 7 files changed +7
-7
lines changed Expand file tree Collapse file tree 7 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ get_filename_component(PROJECT_DIR_NAME ${CMAKE_CURRENT_LIST_DIR} NAME)
8
8
string (REPLACE " " "_" PROJECT_DIR_NAME ${PROJECT_DIR_NAME} )
9
9
10
10
project (${PROJECT_DIR_NAME}
11
- VERSION 1.5.0 # <major>.<minor>.<patch>
11
+ VERSION 1.5.1 # <major>.<minor>.<patch>
12
12
LANGUAGES CXX)
13
13
14
14
set (LIB_NAME shift)
Original file line number Diff line number Diff line change 1
1
package :
2
2
name : shift-coreclient
3
- version : " 1.5.0 "
3
+ version : " 1.5.1 "
4
4
5
5
source :
6
6
git_url : https://github.com/hanlonlab/shift-main.git
Original file line number Diff line number Diff line change 1
1
package :
2
2
name : shift-miscutils
3
- version : " 1.5.0 "
3
+ version : " 1.5.1 "
4
4
5
5
source :
6
6
git_url : https://github.com/hanlonlab/shift-main.git
Original file line number Diff line number Diff line change 1
1
package :
2
2
name : shift-python
3
- version : " 1.5.0 "
3
+ version : " 1.5.1 "
4
4
5
5
source :
6
6
git_url : https://github.com/hanlonlab/shift-python.git
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ RUN conda install black
19
19
RUN conda install keras
20
20
21
21
# Install shift-python
22
- RUN wget -qO- https://github.com/hanlonlab/shift-python/releases/download/v1.5.0 /shift_python-1.5.0 -conda_linux.zip | bsdtar -xvf- && \
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- && \
23
23
cd shift* && \
24
24
conda install *.tar.bz2
25
25
Original file line number Diff line number Diff line change @@ -96,7 +96,7 @@ def run(self):
96
96
97
97
setup (
98
98
name = "shift" ,
99
- version = "1.5.0 " ,
99
+ version = "1.5.1 " ,
100
100
author = "SHIFT" ,
101
101
author_email = "" ,
102
102
description = "Stevens High Frequency Trading (SHIFT) Simulation System Python Client" ,
Original file line number Diff line number Diff line change 12
12
PYBIND11_MODULE (shift, m)
13
13
{
14
14
m.doc () = " SHIFT-Python API" ;
15
- m.attr (" __version__" ) = " 1.5.0 " ;
15
+ m.attr (" __version__" ) = " 1.5.1 " ;
16
16
17
17
py::register_exception<shift::IncorrectPasswordError>(m, " IncorrectPasswordError" );
18
18
py::register_exception<shift::ConnectionTimeoutError>(m, " ConnectionTimeoutError" );
You can’t perform that action at this time.
0 commit comments