Unverified Commit 90b79bb2 authored by Mayank Mittal's avatar Mayank Mittal Committed by GitHub

Updates version to release 2.1.1 (#3047)

# Description

A long overdue release of IsaacLab. Since we will soon have IsaacLab 2.2
out which primarily supports IsaacSim 5.0, this release marks a "stable"
checkpoint of IsaacLab that works with IsaacSim 4.5.

We are working towards improving our release cycles to have more
frequent patch releases.

## Type of change

- This change requires a documentation update

## Checklist

- [x] I have run the [`pre-commit` checks](https://pre-commit.com/) with
`./isaaclab.sh --format`
- [x] I have made corresponding changes to the documentation
- [x] My changes generate no new warnings
- [ ] I have added tests that prove my fix is effective or that my
feature works
- [ ] I have updated the changelog and the corresponding version in the
extension's `config/extension.toml` file
- [x] I have added my name to the `CONTRIBUTORS.md` or my name already
exists there

---------
Co-authored-by: 's avatarPascal Roth <57946385+pascal-roth@users.noreply.github.com>
parent 3abdbb2c
cff-version: 1.2.0
message: "If you use this software, please cite both the Isaac Lab repository and the Orbit paper."
title: Isaac Lab
version: 2.1.0
version: 2.1.1
repository-code: https://github.com/NVIDIA-Omniverse/IsaacLab
type: software
authors:
......
......@@ -46,6 +46,7 @@ Below, we outline the recent Isaac Lab releases and GitHub branches and their co
| Isaac Lab Version | Isaac Sim Version |
| ----------------------------- | ----------------- |
| `main` branch | Isaac Sim 4.5 |
| `v2.1.1` | Isaac Sim 4.5 |
| `v2.1.0` | Isaac Sim 4.5 |
| `v2.0.2` | Isaac Sim 4.5 |
| `v2.0.1` | Isaac Sim 4.5 |
......
......@@ -5,7 +5,7 @@
[package]
title = "Isaac Lab Python Headless"
description = "An app for running Isaac Lab headlessly"
version = "2.1.0"
version = "2.1.1"
# That makes it browsable in UI with "experience" filter
keywords = ["experience", "app", "isaaclab", "python", "headless"]
......
......@@ -9,7 +9,7 @@
[package]
title = "Isaac Lab Python Headless Camera"
description = "An app for running Isaac Lab headlessly with rendering enabled"
version = "2.1.0"
version = "2.1.1"
# That makes it browsable in UI with "experience" filter
keywords = ["experience", "app", "isaaclab", "python", "camera", "minimal"]
......
......@@ -5,7 +5,7 @@
[package]
title = "Isaac Lab Python"
description = "An app for running Isaac Lab"
version = "2.1.0"
version = "2.1.1"
# That makes it browsable in UI with "experience" filter
keywords = ["experience", "app", "usd"]
......
......@@ -9,7 +9,7 @@
[package]
title = "Isaac Lab Python Camera"
description = "An app for running Isaac Lab with rendering enabled"
version = "2.1.0"
version = "2.1.1"
# That makes it browsable in UI with "experience" filter
keywords = ["experience", "app", "isaaclab", "python", "camera", "minimal"]
......
......@@ -5,7 +5,7 @@
[package]
title = "Isaac Lab Python OpenXR Headless"
description = "An app for running Isaac Lab with OpenXR in headless mode"
version = "2.1.0"
version = "2.1.1"
# That makes it browsable in UI with "experience" filter
keywords = ["experience", "app", "usd", "headless"]
......
......@@ -5,7 +5,7 @@
[package]
title = "Isaac Lab Python OpenXR"
description = "An app for running Isaac Lab with OpenXR"
version = "2.1.0"
version = "2.1.1"
# That makes it browsable in UI with "experience" filter
keywords = ["experience", "app", "usd"]
......
......@@ -16,7 +16,7 @@ ENV ISAACSIM_VERSION=${ISAACSIM_VERSION_ARG}
SHELL ["/bin/bash", "-c"]
# Adds labels to the Dockerfile
LABEL version="1.1"
LABEL version="2.1.1"
LABEL description="Dockerfile for building and running the Isaac Lab framework inside Isaac Sim container image."
# Arguments
......
......@@ -291,12 +291,18 @@ Running Pre-Built Isaac Lab Container
In Isaac Lab 2.0 release, we introduced a minimal pre-built container that contains a very minimal set
of Isaac Sim and Omniverse dependencies, along with Isaac Lab 2.0 pre-built into the container.
This container allows users to pull the container directly from NGC without requiring a local build of
the docker image. The Isaac Lab 2.0 source code will be available in this container under ``/workspace/IsaacLab``.
the docker image. The Isaac Lab source code will be available in this container under ``/workspace/IsaacLab``.
This container is designed for running **headless** only and does not allow for X11 forwarding or running
with the GUI. Please only use this container for headless training. For other use cases, we recommend
following the above steps to build your own Isaac Lab docker image.
.. note::
Currently, we only provide docker images with every major release of Isaac Lab.
For example, we provide the docker image for release 2.0.0 and 2.1.0, but not 2.0.2.
In the future, we will provide docker images for every minor release of Isaac Lab.
To pull the minimal Isaac Lab container, run:
.. code:: bash
......
This diff is collapsed.
......@@ -3,9 +3,9 @@ Installing Isaac Lab through Pip
From Isaac Lab 2.0, pip packages are provided to install both Isaac Sim and Isaac Lab extensions from pip.
Note that this installation process is only recommended for advanced users working on additional extension projects
that are built on top of Isaac Lab. Isaac Lab pip packages **do not** include any standalone python scripts for
that are built on top of Isaac Lab. Isaac Lab pip packages **does not** include any standalone python scripts for
training, inferencing, or running standalone workflows such as demos and examples. Therefore, users are required
to define your own runner scripts when installing Isaac Lab from pip.
to define their own runner scripts when installing Isaac Lab from pip.
To learn about how to set up your own project on top of Isaac Lab, see :ref:`template-generator`.
......@@ -82,6 +82,12 @@ To learn about how to set up your own project on top of Isaac Lab, see :ref:`tem
pip install isaaclab[isaacsim,all]==2.1.0 --extra-index-url https://pypi.nvidia.com
.. note::
Currently, we only provide pip packages for every major release of Isaac Lab.
For example, we provide the pip package for release 2.0.0 and 2.1.0, but not 2.0.2.
In the future, we will provide pip packages for every minor release of Isaac Lab.
Verifying the Isaac Sim installation
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment