Skip to content

Commit 3b9eb54

Browse files
authored
bump v0.5.0 (#709)
1 parent 3880f4a commit 3b9eb54

6 files changed

Lines changed: 9 additions & 9 deletions

File tree

.github/workflows/test-areal.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ env:
1515
RUNNER_LABELS: gcp-a2-highgpu-2g
1616
RUNNER_VERSION: '2.317.0'
1717
GCP_OS_IMAGE: areal-cicd-test-202510270
18-
CONTAINER_IMAGE: ghcr.io/inclusionai/areal-runtime:${{ (github.head_ref == 'build-docker-image' || github.ref_name == 'build-docker-image') && 'dev' || 'v0.4.1' }}
18+
CONTAINER_IMAGE: ghcr.io/inclusionai/areal-runtime:${{ (github.head_ref == 'build-docker-image' || github.ref_name == 'build-docker-image') && 'dev' || 'v0.5.0' }}
1919

2020
jobs:
2121
provision-runner:

areal/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
class VersionInfo:
77
def __init__(self):
8-
self.__version__ = "0.4.1"
8+
self.__version__ = "0.5.0"
99
self.__branch__ = ""
1010
self.__commit__ = ""
1111
self.__is_dirty__ = False

docs/tutorial/installation.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ The following hardware configuration has been extensively tested:
2424
| 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) |
2525
| Docker | 27.5.1 |
2626
| NVIDIA Container Toolkit | See [installation guide](https://docs.nvidia.com/datacenter/cloud-native/container-toolkit/latest/install-guide.html) |
27-
| AReaL Image | `ghcr.io/inclusionai/areal-runtime:v0.4.1` (includes runtime dependencies and Ray components) |
27+
| AReaL Image | `ghcr.io/inclusionai/areal-runtime:v0.5.0` (includes runtime dependencies and Ray components) |
2828

2929
**Note**: This tutorial does not cover the installation of NVIDIA Drivers, CUDA, or
3030
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
4242
top-level directory of the AReaL repository.
4343

4444
```bash
45-
docker pull ghcr.io/inclusionai/areal-runtime:v0.4.1
45+
docker pull ghcr.io/inclusionai/areal-runtime:v0.5.0
4646
docker run -it --name areal-node1 \
4747
--privileged --gpus all --network host \
4848
--shm-size 700g -v /path/to/mount:/path/to/mount \
49-
ghcr.io/inclusionai/areal-runtime:v0.4.1 \
49+
ghcr.io/inclusionai/areal-runtime:v0.5.0 \
5050
/bin/bash
5151
git clone https://github.com/inclusionAI/AReaL
5252
cd AReaL

examples/skypilot/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ resources:
2525
cpus: 8+
2626
memory: 32GB+
2727
disk_size: 256GB
28-
image_id: docker:ghcr.io/inclusionai/areal-runtime:v0.4.1
28+
image_id: docker:ghcr.io/inclusionai/areal-runtime:v0.5.0
2929

3030
num_nodes: 1
3131

@@ -76,7 +76,7 @@ Specify the resources and image used to run the experiment.
7676
```yaml
7777
resources:
7878
accelerators: A100:8
79-
image_id: docker:ghcr.io/inclusionai/areal-runtime:v0.4.1
79+
image_id: docker:ghcr.io/inclusionai/areal-runtime:v0.5.0
8080
memory: 256+
8181
cpus: 32+
8282

examples/skypilot/ray_cluster.sky.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
resources:
33
accelerators: A100:8
4-
image_id: docker:ghcr.io/inclusionai/areal-runtime:v0.4.1
4+
image_id: docker:ghcr.io/inclusionai/areal-runtime:v0.5.0
55
memory: 32+
66
cpus: 8+
77

examples/skypilot/single_node.sky.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ resources:
88
cpus: 8+
99
memory: 32GB+
1010
disk_size: 256GB
11-
image_id: docker:ghcr.io/inclusionai/areal-runtime:v0.4.1
11+
image_id: docker:ghcr.io/inclusionai/areal-runtime:v0.5.0
1212

1313
num_nodes: 1
1414

0 commit comments

Comments
 (0)