Skip to content

Commit e309aea

Browse files
committed
Update version to 0.2.1
1 parent ec24299 commit e309aea

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ Some of Nucleus's features include:
6060
<!-- UPDATE THIS VERSION ON EACH RELEASE (it's better than using "master") -->
6161

6262
```bash
63-
pip install git+https://github.com/cortexlabs/nucleus.git@0.2.0
63+
pip install git+https://github.com/cortexlabs/nucleus.git@0.2.1
6464
```
6565

6666
## Example usage

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.0
3+
ENV CORTEX_MODEL_SERVER_VERSION=0.2.1
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.0
2+
ENV CORTEX_MODEL_SERVER_VERSION=0.2.1

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.0"
17+
CORTEX_MODEL_SERVER_VERSION = "0.2.1"
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.0"
16+
MODEL_SERVER_VERSION = "0.2.1"

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.0"
20+
CORTEX_MODEL_SERVER_VERSION = "0.2.1"
2121

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

0 commit comments

Comments
 (0)