Skip to content

Commit 1b91ceb

Browse files
committed
v1.5.1 Release
1 parent aa3d452 commit 1b91ceb

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
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.0 # <major>.<minor>.<patch>
11+
VERSION 1.5.1 # <major>.<minor>.<patch>
1212
LANGUAGES CXX)
1313

1414
set(LIB_NAME shift)

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.0"
3+
version: "1.5.1"
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.0"
3+
version: "1.5.1"
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.0"
3+
version: "1.5.1"
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.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- && \
2323
cd shift* && \
2424
conda install *.tar.bz2
2525

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.0",
99+
version="1.5.1",
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.0";
15+
m.attr("__version__") = "1.5.1";
1616

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

0 commit comments

Comments
 (0)