Skip to content

Commit d023a15

Browse files
committed
Update version to 0.2.2
1 parent ce937e3 commit d023a15

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

nucleus/templates/handler.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# to replace when building the dockerfile
22
FROM $BASE_IMAGE
3-
ENV CORTEX_MODEL_SERVER_VERSION=0.2.1
3+
ENV CORTEX_MODEL_SERVER_VERSION=0.2.2
44

55
RUN apt-get update -qq && apt-get install -y -q \
66
build-essential \

nucleus/templates/tfs.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
FROM $BASE_IMAGE
2-
ENV CORTEX_MODEL_SERVER_VERSION=0.2.1
2+
ENV CORTEX_MODEL_SERVER_VERSION=0.2.2

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
import setuptools
1616

17-
CORTEX_MODEL_SERVER_VERSION = "0.2.1"
17+
CORTEX_MODEL_SERVER_VERSION = "0.2.2"
1818

1919
with open("requirements.txt") as fp:
2020
install_requires = fp.read()

src/cortex/cortex_internal/consts.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@
1313
# limitations under the License.
1414

1515
SINGLE_MODEL_NAME = "_cortex_default"
16-
MODEL_SERVER_VERSION = "0.2.1"
16+
MODEL_SERVER_VERSION = "0.2.2"

src/cortex/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
import pkg_resources
1818
from setuptools import setup, find_packages
1919

20-
CORTEX_MODEL_SERVER_VERSION = "0.2.1"
20+
CORTEX_MODEL_SERVER_VERSION = "0.2.2"
2121

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

0 commit comments

Comments
 (0)