From 5c75c71ddb008e515c58252d3cbfe9447f22e2c0 Mon Sep 17 00:00:00 2001 From: Aliaksandr Ivanou Date: Fri, 10 Apr 2020 09:34:02 -0700 Subject: [PATCH] 0.2.0rc1 Summary: Bump version to 0.2.0rc1 that introduces minor bug fixes Reviewed By: drdarshan Differential Revision: D20958385 fbshipit-source-id: 44563a72bd2a567dd586613ea4a378d30af163ba --- docs/source/examples.rst | 4 ++-- examples/Dockerfile | 2 +- kubernetes/config/samples/classy-vision.yaml | 2 +- kubernetes/config/samples/imagenet.yaml | 2 +- torchelastic/version.py | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/source/examples.rst b/docs/source/examples.rst index db30b4bb..02cdf597 100644 --- a/docs/source/examples.rst +++ b/docs/source/examples.rst @@ -4,9 +4,9 @@ Examples The examples below run on the `torchelastic/examples `_ Docker image, built from the `examples/Dockerfile `_. -.. note:: The ``$VERSION`` (e.g. ``0.2.0rc0``) variable is used throughout this page, +.. note:: The ``$VERSION`` (e.g. ``0.2.0rc1``) variable is used throughout this page, this should be substituted with the version of torchelastic you are using. - The examples below only work on torchelastic ``>0.2.0rc0``. + The examples below only work on torchelastic ``>0.2.0rc1``. Prerequisite -------------- diff --git a/examples/Dockerfile b/examples/Dockerfile index 5f2cfeca..606a0c65 100644 --- a/examples/Dockerfile +++ b/examples/Dockerfile @@ -1,4 +1,4 @@ -ARG BASE_IMAGE=pytorch/elastic:0.2.0rc0 +ARG BASE_IMAGE=pytorch/elastic:0.2.0rc1 FROM $BASE_IMAGE # install utilities and dependencies diff --git a/kubernetes/config/samples/classy-vision.yaml b/kubernetes/config/samples/classy-vision.yaml index a2e610a4..7a16e701 100644 --- a/kubernetes/config/samples/classy-vision.yaml +++ b/kubernetes/config/samples/classy-vision.yaml @@ -18,7 +18,7 @@ spec: spec: containers: - name: elasticjob-worker - image: torchelastic/examples:0.2.0rc0 + image: torchelastic/examples:0.2.0rc1 imagePullPolicy: Always args: - "--nproc_per_node=1" diff --git a/kubernetes/config/samples/imagenet.yaml b/kubernetes/config/samples/imagenet.yaml index 6bec14e5..0fec87e2 100644 --- a/kubernetes/config/samples/imagenet.yaml +++ b/kubernetes/config/samples/imagenet.yaml @@ -18,7 +18,7 @@ spec: spec: containers: - name: elasticjob-worker - image: torchelastic/examples:0.2.0rc0 + image: torchelastic/examples:0.2.0rc1 imagePullPolicy: Always args: - "--nproc_per_node=1" diff --git a/torchelastic/version.py b/torchelastic/version.py index e0e9ebe8..77deefd9 100644 --- a/torchelastic/version.py +++ b/torchelastic/version.py @@ -15,4 +15,4 @@ # 0.1.0bN # Beta release # 0.1.0rcN # Release Candidate # 0.1.0 # Final release -__version__ = "0.2.0rc0" +__version__ = "0.2.0rc1"