From 8213ba0c7118b366f449d9796637add15f4c45d9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=8D=9A=E6=83=9F?= Date: Mon, 26 Jan 2026 17:52:27 +0800 Subject: [PATCH] bump v0.5.2 --- .github/workflows/tag-release-image.yml | 2 +- .github/workflows/test-areal.yml | 2 +- areal/version.py | 2 +- docs/tutorial/installation.md | 6 +++--- examples/skypilot/README.md | 4 ++-- examples/skypilot/ray_cluster.sky.yaml | 2 +- examples/skypilot/single_node.sky.yaml | 2 +- 7 files changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/tag-release-image.yml b/.github/workflows/tag-release-image.yml index 9020a1b038..ca709669de 100644 --- a/.github/workflows/tag-release-image.yml +++ b/.github/workflows/tag-release-image.yml @@ -6,7 +6,7 @@ on: workflow_dispatch: inputs: tag: - description: 'Release tag to build (e.g., v0.5.1)' + description: 'Release tag to build (e.g., v0.5.2)' required: true type: string diff --git a/.github/workflows/test-areal.yml b/.github/workflows/test-areal.yml index 27a8b1f3ee..3cf9db6505 100644 --- a/.github/workflows/test-areal.yml +++ b/.github/workflows/test-areal.yml @@ -15,7 +15,7 @@ env: RUNNER_LABELS: gcp-a2-highgpu-2g RUNNER_VERSION: '2.317.0' GCP_OS_IMAGE: areal-cicd-test-202512290 - CONTAINER_IMAGE: ghcr.io/inclusionai/areal-runtime:${{ (github.head_ref == 'build-docker-image' || github.ref_name == 'build-docker-image') && 'dev' || 'v0.5.1' }} + CONTAINER_IMAGE: ghcr.io/inclusionai/areal-runtime:${{ (github.head_ref == 'build-docker-image' || github.ref_name == 'build-docker-image') && 'dev' || 'v0.5.2' }} jobs: provision-runner: diff --git a/areal/version.py b/areal/version.py index 2cf02f17f8..e368d40225 100644 --- a/areal/version.py +++ b/areal/version.py @@ -5,7 +5,7 @@ class VersionInfo: def __init__(self): - self.__version__ = "0.5.1" + self.__version__ = "0.5.2" self.__branch__ = "" self.__commit__ = "" self.__is_dirty__ = False diff --git a/docs/tutorial/installation.md b/docs/tutorial/installation.md index 2b0c95e1e9..5ce2debfaf 100644 --- a/docs/tutorial/installation.md +++ b/docs/tutorial/installation.md @@ -24,7 +24,7 @@ The following hardware configuration has been extensively tested: | Git LFS | Required for downloading models, datasets, and AReaL code. See [installation guide](https://docs.github.com/en/repositories/working-with-files/managing-large-files/installing-git-large-file-storage) | | Docker | 27.5.1 | | NVIDIA Container Toolkit | See [installation guide](https://docs.nvidia.com/datacenter/cloud-native/container-toolkit/latest/install-guide.html) | -| AReaL Image | `ghcr.io/inclusionai/areal-runtime:v0.5.1` (includes runtime dependencies and Ray components) | +| AReaL Image | `ghcr.io/inclusionai/areal-runtime:v0.5.2` (includes runtime dependencies and Ray components) | **Note**: This tutorial does not cover the installation of NVIDIA Drivers, CUDA, or shared storage mounting, as these depend on your specific node configuration and system @@ -42,11 +42,11 @@ We recommend using Docker with our provided image. The Dockerfile is available i top-level directory of the AReaL repository. ```bash -docker pull ghcr.io/inclusionai/areal-runtime:v0.5.1 +docker pull ghcr.io/inclusionai/areal-runtime:v0.5.2 docker run -it --name areal-node1 \ --privileged --gpus all --network host \ --shm-size 700g -v /path/to/mount:/path/to/mount \ - ghcr.io/inclusionai/areal-runtime:v0.5.1 \ + ghcr.io/inclusionai/areal-runtime:v0.5.2 \ /bin/bash git clone https://github.com/inclusionAI/AReaL cd AReaL diff --git a/examples/skypilot/README.md b/examples/skypilot/README.md index c834f796f3..a3846e9a44 100644 --- a/examples/skypilot/README.md +++ b/examples/skypilot/README.md @@ -25,7 +25,7 @@ resources: cpus: 8+ memory: 32GB+ disk_size: 256GB - image_id: docker:ghcr.io/inclusionai/areal-runtime:v0.5.1 + image_id: docker:ghcr.io/inclusionai/areal-runtime:v0.5.2 num_nodes: 1 @@ -76,7 +76,7 @@ Specify the resources and image used to run the experiment. ```yaml resources: accelerators: A100:8 - image_id: docker:ghcr.io/inclusionai/areal-runtime:v0.5.1 + image_id: docker:ghcr.io/inclusionai/areal-runtime:v0.5.2 memory: 256+ cpus: 32+ diff --git a/examples/skypilot/ray_cluster.sky.yaml b/examples/skypilot/ray_cluster.sky.yaml index 717a085caf..ff73646573 100644 --- a/examples/skypilot/ray_cluster.sky.yaml +++ b/examples/skypilot/ray_cluster.sky.yaml @@ -1,7 +1,7 @@ resources: accelerators: A100:8 - image_id: docker:ghcr.io/inclusionai/areal-runtime:v0.5.1 + image_id: docker:ghcr.io/inclusionai/areal-runtime:v0.5.2 memory: 32+ cpus: 8+ diff --git a/examples/skypilot/single_node.sky.yaml b/examples/skypilot/single_node.sky.yaml index aef59f0a1d..ce1a4a1919 100644 --- a/examples/skypilot/single_node.sky.yaml +++ b/examples/skypilot/single_node.sky.yaml @@ -8,7 +8,7 @@ resources: cpus: 8+ memory: 32GB+ disk_size: 256GB - image_id: docker:ghcr.io/inclusionai/areal-runtime:v0.5.1 + image_id: docker:ghcr.io/inclusionai/areal-runtime:v0.5.2 num_nodes: 1