Skip to content

Commit 869535c

Browse files
authored
Add v0.2 release notes for GTC. (#485)
## Summary Add a draft version of the v0.2 release notes. ## Detailed description - Adding a draft of these release notes such that people landing `main` can read the release notes. - Note that these are a draft (as indicated in the notes) as `v0.2` is not yet released.
1 parent 45b95a1 commit 869535c

File tree

3 files changed

+79
-4
lines changed

3 files changed

+79
-4
lines changed

docs/README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,15 +17,16 @@ From the repo root, create the venv and install dependencies:
1717
```bash
1818
cd docs
1919
python3.11 -m venv venv_docs
20-
venv_docs/bin/pip install -r requirements.txt
20+
source venv_docs/bin/activate
21+
pip install -r requirements.txt
2122
```
2223

2324

24-
## Build and view
25+
## Build and view (current branch/changes)
2526

2627
```bash
2728
cd docs
28-
venv_docs/bin/sphinx-build -M html . _build/current
29+
make html
2930
xdg-open _build/current/html/index.html
3031
```
3132

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
# from setup import ISAACLAB_ARENA_VERSION_NUMBER
3232

3333
# TODO(alexmillane, 2025-10-03): Get this programmatically, as above.
34-
ISAACLAB_ARENA_VERSION_NUMBER = "0.1"
34+
ISAACLAB_ARENA_VERSION_NUMBER = "0.2"
3535

3636

3737
# Modify PYTHONPATH so we can import the helpers module.

docs/pages/references/release_notes.rst

Lines changed: 74 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,80 @@
11
Release Notes
22
=============
33

4+
Unreleased: v0.2.0
5+
------------------
6+
7+
This release of Isaac Lab-Arena focuses on adding essential features needed for creation and
8+
execution of large-scale task libraries with complex long-horizon tasks.
9+
10+
.. note::
11+
12+
Changes on ``main`` contains an in development version of v0.2.0.
13+
As of March 16th 2026 (GTC San Jose 2026), ``main`` contains most of the features for the v0.2.0 release,
14+
however, is based on Isaac Lab 2.3 (rather than Isaac Lab 3.0) and has not been SQA tested.*
15+
16+
**Key Features**
17+
18+
- **LEGO-like Composable Environments** — Mix and match scenes, embodiments, and tasks independently
19+
- **On-the-fly Assembly** — Environments are built at runtime; no duplicate config files to maintain.
20+
- **New Sequential Task Chaining** — Chain atomic skills (e.g. Pick + Walk + Place + …) to create complex long-horizon tasks.
21+
- **New Natural Language Object Placement** — Define scene layouts using semantic relationships
22+
like "on" or "next to", instead of manually specified coordinates.
23+
- **Integrated Evaluation** — Extensible metrics and evaluation pipelines for policy benchmarking
24+
- **New Large-scale Parallel Evaluations with Heterogeneous Objects** — Evaluate policy on multiple parallel
25+
environments, each with different objects, to maximize evaluation throughput.
26+
- **New RL Workflow Support and Seamless Interoperation with Isaac Lab** — Plug Isaac Lab-Arena environments
27+
into Isaac Lab workflows for Reinforcement learning and Data generation for imitation learning.
28+
29+
30+
**Ecosystem**
31+
NVIDIA and partners are building Industrial and academic benchmarks on the unified Isaac Lab-Arena core,
32+
so you can reuse LEGO blocks (tasks, scenes, metrics, and datasets) for your custom evaluations.
33+
34+
- `Lightwheel RoboFinals <https://lightwheel.ai/robofinals>`_ — high fidelity industrial benchmarks
35+
- `Lightwheel RoboCasa Tasks <https://github.com/LightwheelAI/LW-BenchHub>`_ — 138+ open-source tasks,
36+
50 datasets per task, 7+ robots
37+
- `Lightwheel LIBERO Tasks <https://github.com/LightwheelAI/LW-BenchHub>`_ — Adapted LIBERO benchmarks
38+
- `RoboTwin 2.0 <https://github.com/RoboTwin-Platform/RoboTwin/tree/IsaacLab-Arena>`_ — Extended simulation
39+
benchmarks using Arena (`arxiv <https://arxiv.org/abs/2603.08164>`_)
40+
- `LeRobot Environment Hub <https://huggingface.co/blog/nvidia/generalist-robotpolicy-eval-isaaclab-arena-lerobot>`_ — Share
41+
and discover Arena environments on Hugging Face
42+
- **Coming Soon:** NIST Board 1, NVIDIA Isaac GR00T Industrial Benchmarks, NVIDIA DexBench, NVIDIA RoboLab, and more.
43+
44+
45+
**Developer preview branches**
46+
47+
- **A developer preview of Isaac Lab-Arena 0.2 (based on Isaac Lab 2.3) is now available** on
48+
`main <https://github.com/isaac-sim/IsaacLab-Arena/tree/main>`_.
49+
This early version includes the 0.2 features and is meant for users who can accept some instability.
50+
- **Isaac Lab-Arena 0.2 on Isaac Lab 3.0 is underway in a dedicated feature branch**
51+
`feature/isaac_lab_3_newton <https://github.com/isaac-sim/IsaacLab-Arena/tree/feature/isaac_lab_3_newton>`_.
52+
This branch is subject to significant changes and instability as Lab 3.0 (Newton) is evolving quickly.
53+
- **The official, stable, and tested release of Isaac Lab-Arena 0.2 on Isaac Lab 3.0 is coming soon in April 2026.**
54+
55+
56+
**Collaboration**
57+
58+
Isaac Lab-Arena is being developed as an open-source, shared evaluation framework that the community can
59+
collectively enhance and expand. We invite you to try Isaac Lab-Arena 0.2 Alpha, share feedback, and help
60+
shape its future. In Alpha stage, development velocity is high and core features/APIs are evolving. Your
61+
input at this stage is especially valuable.
62+
63+
**What's Next**
64+
65+
Future releases will focus on agentic, prompt-first scene and task generation, non-sequential long horizon
66+
tasks, easy-to-configure sensitivity analysis with targeted environment variations and evaluation sweeps without
67+
code changes, enhanced heterogeneity across parallel evaluations, and VLM-augmented analysis to surface
68+
insights from large-scale evaluations. These will come with ongoing improvements to performance and usability,
69+
such as PIP packaging.
70+
71+
**Limitations**
72+
73+
- pip install support is coming soon (current installation method is Docker-based).
74+
- Performance is not yet hardened for production-scale workloads in Alpha stage.
75+
76+
77+
478

579
v0.1.1
680
------

0 commit comments

Comments
 (0)