Skip to content

Commit

Permalink
v1.5.1 Release
Browse files Browse the repository at this point in the history
  • Loading branch information
thiagowinkler committed Oct 10, 2019
1 parent aa3d452 commit 1b91ceb
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ get_filename_component(PROJECT_DIR_NAME ${CMAKE_CURRENT_LIST_DIR} NAME)
string(REPLACE " " "_" PROJECT_DIR_NAME ${PROJECT_DIR_NAME})

project(${PROJECT_DIR_NAME}
VERSION 1.5.0 # <major>.<minor>.<patch>
VERSION 1.5.1 # <major>.<minor>.<patch>
LANGUAGES CXX)

set(LIB_NAME shift)
Expand Down
2 changes: 1 addition & 1 deletion release/conda/shift-coreclient/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package:
name: shift-coreclient
version: "1.5.0"
version: "1.5.1"

source:
git_url: https://github.com/hanlonlab/shift-main.git
Expand Down
2 changes: 1 addition & 1 deletion release/conda/shift-miscutils/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package:
name: shift-miscutils
version: "1.5.0"
version: "1.5.1"

source:
git_url: https://github.com/hanlonlab/shift-main.git
Expand Down
2 changes: 1 addition & 1 deletion release/conda/shift-python/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package:
name: shift-python
version: "1.5.0"
version: "1.5.1"

source:
git_url: https://github.com/hanlonlab/shift-python.git
Expand Down
2 changes: 1 addition & 1 deletion release/docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ RUN conda install black
RUN conda install keras

# Install shift-python
RUN wget -qO- https://github.com/hanlonlab/shift-python/releases/download/v1.5.0/shift_python-1.5.0-conda_linux.zip | bsdtar -xvf- && \
RUN wget -qO- https://github.com/hanlonlab/shift-python/releases/download/v1.5.1/shift_python-1.5.1-conda_linux.zip | bsdtar -xvf- && \
cd shift* && \
conda install *.tar.bz2

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ def run(self):

setup(
name="shift",
version="1.5.0",
version="1.5.1",
author="SHIFT",
author_email="",
description="Stevens High Frequency Trading (SHIFT) Simulation System Python Client",
Expand Down
2 changes: 1 addition & 1 deletion src/SHIFT.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
PYBIND11_MODULE(shift, m)
{
m.doc() = "SHIFT-Python API";
m.attr("__version__") = "1.5.0";
m.attr("__version__") = "1.5.1";

py::register_exception<shift::IncorrectPasswordError>(m, "IncorrectPasswordError");
py::register_exception<shift::ConnectionTimeoutError>(m, "ConnectionTimeoutError");
Expand Down

0 comments on commit 1b91ceb

Please sign in to comment.