Skip to content

Commit

Permalink
Update version to 0.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
deliahu committed Jan 6, 2022
1 parent ec24299 commit e309aea
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ Some of Nucleus's features include:
<!-- UPDATE THIS VERSION ON EACH RELEASE (it's better than using "master") -->

```bash
pip install git+https://github.com/cortexlabs/[email protected].0
pip install git+https://github.com/cortexlabs/[email protected].1
```

## Example usage
Expand Down
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.0
ENV CORTEX_MODEL_SERVER_VERSION=0.2.1

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.0
ENV CORTEX_MODEL_SERVER_VERSION=0.2.1
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.0"
CORTEX_MODEL_SERVER_VERSION = "0.2.1"

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

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

0 comments on commit e309aea

Please sign in to comment.