diff --git a/README.md b/README.md index 29925ca..df7b198 100644 --- a/README.md +++ b/README.md @@ -60,7 +60,7 @@ Some of Nucleus's features include: ```bash -pip install git+https://github.com/cortexlabs/nucleus.git@0.2.0 +pip install git+https://github.com/cortexlabs/nucleus.git@0.2.1 ``` ## Example usage diff --git a/nucleus/templates/handler.Dockerfile b/nucleus/templates/handler.Dockerfile index 39ab95a..95cd6e7 100644 --- a/nucleus/templates/handler.Dockerfile +++ b/nucleus/templates/handler.Dockerfile @@ -1,6 +1,6 @@ # to replace when building the dockerfile FROM $BASE_IMAGE -ENV CORTEX_MODEL_SERVER_VERSION=0.2.0 +ENV CORTEX_MODEL_SERVER_VERSION=0.2.1 RUN apt-get update -qq && apt-get install -y -q \ build-essential \ diff --git a/nucleus/templates/tfs.Dockerfile b/nucleus/templates/tfs.Dockerfile index 7d52261..630201e 100644 --- a/nucleus/templates/tfs.Dockerfile +++ b/nucleus/templates/tfs.Dockerfile @@ -1,2 +1,2 @@ FROM $BASE_IMAGE -ENV CORTEX_MODEL_SERVER_VERSION=0.2.0 +ENV CORTEX_MODEL_SERVER_VERSION=0.2.1 diff --git a/setup.py b/setup.py index 64a1780..db365a0 100644 --- a/setup.py +++ b/setup.py @@ -14,7 +14,7 @@ import setuptools -CORTEX_MODEL_SERVER_VERSION = "0.2.0" +CORTEX_MODEL_SERVER_VERSION = "0.2.1" with open("requirements.txt") as fp: install_requires = fp.read() diff --git a/src/cortex/cortex_internal/consts.py b/src/cortex/cortex_internal/consts.py index 16406e2..93a1215 100644 --- a/src/cortex/cortex_internal/consts.py +++ b/src/cortex/cortex_internal/consts.py @@ -13,4 +13,4 @@ # limitations under the License. SINGLE_MODEL_NAME = "_cortex_default" -MODEL_SERVER_VERSION = "0.2.0" +MODEL_SERVER_VERSION = "0.2.1" diff --git a/src/cortex/setup.py b/src/cortex/setup.py index 99860dc..6d9d5a1 100644 --- a/src/cortex/setup.py +++ b/src/cortex/setup.py @@ -17,7 +17,7 @@ import pkg_resources from setuptools import setup, find_packages -CORTEX_MODEL_SERVER_VERSION = "0.2.0" +CORTEX_MODEL_SERVER_VERSION = "0.2.1" with pathlib.Path("cortex_internal.requirements.txt").open() as requirements_txt: install_requires = [