From f15b07775729919b56baf092b6a7fcb90f48b246 Mon Sep 17 00:00:00 2001 From: Bandish Shah Date: Thu, 2 Feb 2023 17:08:03 -0800 Subject: [PATCH] Bump version to 0.12.1 --- composer/_version.py | 2 +- docker/README.md | 4 ++-- docker/build_matrix.yaml | 8 ++++---- docker/generate_build_matrix.py | 2 +- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/composer/_version.py b/composer/_version.py index a292fbda98..36004a5d7d 100644 --- a/composer/_version.py +++ b/composer/_version.py @@ -3,4 +3,4 @@ """The Composer Version.""" -__version__ = '0.12.0' +__version__ = '0.12.1' diff --git a/docker/README.md b/docker/README.md index 8a022213ed..fd1f0c39a4 100644 --- a/docker/README.md +++ b/docker/README.md @@ -17,8 +17,8 @@ all dependencies for both NLP and Vision models. They are built on top of the |--------------------|----------------|--------------------------------| | latest | Yes | `mosaicml/composer:latest` | | latest | No | `mosaicml/composer:latest_cpu` | -| 0.12.0 | Yes | `mosaicml/composer:0.12.0` | -| 0.12.0 | No | `mosaicml/composer:0.12.0_cpu` | +| 0.12.1 | Yes | `mosaicml/composer:0.12.1` | +| 0.12.1 | No | `mosaicml/composer:0.12.1_cpu` | diff --git a/docker/build_matrix.yaml b/docker/build_matrix.yaml index d633527a91..a5021ba535 100644 --- a/docker/build_matrix.yaml +++ b/docker/build_matrix.yaml @@ -129,25 +129,25 @@ TORCHVISION_VERSION: 0.14.1 - AWS_OFI_NCCL_VERSION: '' BASE_IMAGE: nvidia/cuda:11.7.1-cudnn8-devel-ubuntu20.04 - COMPOSER_INSTALL_COMMAND: mosaicml[all]==0.12.0 + COMPOSER_INSTALL_COMMAND: mosaicml[all]==0.12.1 CUDA_VERSION: 11.7.1 MOFED_VERSION: 5.5-1.0.3.2 PYTHON_VERSION: '3.10' PYTORCH_VERSION: 1.13.1 TAGS: - - mosaicml/composer:0.12.0 + - mosaicml/composer:0.12.1 TARGET: composer_stage TORCHTEXT_VERSION: 0.14.1 TORCHVISION_VERSION: 0.14.1 - AWS_OFI_NCCL_VERSION: '' BASE_IMAGE: ubuntu:20.04 - COMPOSER_INSTALL_COMMAND: mosaicml[all]==0.12.0 + COMPOSER_INSTALL_COMMAND: mosaicml[all]==0.12.1 CUDA_VERSION: '' MOFED_VERSION: 5.5-1.0.3.2 PYTHON_VERSION: '3.10' PYTORCH_VERSION: 1.13.1 TAGS: - - mosaicml/composer:0.12.0_cpu + - mosaicml/composer:0.12.1_cpu TARGET: composer_stage TORCHTEXT_VERSION: 0.14.1 TORCHVISION_VERSION: 0.14.1 diff --git a/docker/generate_build_matrix.py b/docker/generate_build_matrix.py index 41e8eb3de7..9c3f74fc1b 100644 --- a/docker/generate_build_matrix.py +++ b/docker/generate_build_matrix.py @@ -191,7 +191,7 @@ def _main(): composer_entries = [] # The `GIT_COMMIT` is a placeholder and Jenkins will substitute it with the actual git commit for the `composer_staging` images - composer_versions = ['', '==0.12.0', 'GIT_COMMIT'] # Only build images for the latest composer version + composer_versions = ['', '==0.12.1', 'GIT_COMMIT'] # Only build images for the latest composer version composer_python_versions = [LATEST_PYTHON_VERSION] # just build composer against the latest for product in itertools.product(composer_python_versions, composer_versions, cuda_options):