Skip to content

Commit

Permalink
Update version to 0.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
RobertLucian committed Sep 16, 2022
1 parent ce937e3 commit d023a15
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion nucleus/templates/handler.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# to replace when building the dockerfile
FROM $BASE_IMAGE
ENV CORTEX_MODEL_SERVER_VERSION=0.2.1
ENV CORTEX_MODEL_SERVER_VERSION=0.2.2

RUN apt-get update -qq && apt-get install -y -q \
build-essential \
Expand Down
2 changes: 1 addition & 1 deletion nucleus/templates/tfs.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
FROM $BASE_IMAGE
ENV CORTEX_MODEL_SERVER_VERSION=0.2.1
ENV CORTEX_MODEL_SERVER_VERSION=0.2.2
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

import setuptools

CORTEX_MODEL_SERVER_VERSION = "0.2.1"
CORTEX_MODEL_SERVER_VERSION = "0.2.2"

with open("requirements.txt") as fp:
install_requires = fp.read()
Expand Down
2 changes: 1 addition & 1 deletion src/cortex/cortex_internal/consts.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@
# limitations under the License.

SINGLE_MODEL_NAME = "_cortex_default"
MODEL_SERVER_VERSION = "0.2.1"
MODEL_SERVER_VERSION = "0.2.2"
2 changes: 1 addition & 1 deletion src/cortex/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
import pkg_resources
from setuptools import setup, find_packages

CORTEX_MODEL_SERVER_VERSION = "0.2.1"
CORTEX_MODEL_SERVER_VERSION = "0.2.2"

with pathlib.Path("cortex_internal.requirements.txt").open() as requirements_txt:
install_requires = [
Expand Down

0 comments on commit d023a15

Please sign in to comment.