Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion source/isaaclab/config/extension.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]

# Note: Semantic Versioning is used: https://semver.org/
version = "0.48.6"
version = "0.48.7"

# Description
title = "Isaac Lab framework for Robot Learning"
Expand Down
8 changes: 8 additions & 0 deletions source/isaaclab/docs/CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
Changelog
---------

0.48.7 (2025-11-25)
~~~~~~~~~~~~~~~~~~~

Changed
^^^^^^^

* Changed import from ``isaaclab.sim.utils`` to ``isaaclab.sim.utils.stage`` to properly propagate the Isaac Sim stage context.

0.48.6 (2025-11-18)
~~~~~~~~~~~~~~~~~~~

Expand Down
4 changes: 2 additions & 2 deletions source/isaaclab/isaaclab/devices/openxr/xr_anchor_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@
# import logger
logger = logging.getLogger(__name__)

import isaaclab.sim as sim_utils
from isaaclab.sim import SimulationContext
from isaaclab.sim.utils.stage import get_current_stage_id

from .xr_cfg import XrAnchorRotationMode

Expand Down Expand Up @@ -72,7 +72,7 @@ def sync_headset_to_anchor(self):
if self._xr_cfg.anchor_prim_path is None:
return

stage_id = sim_utils.get_current_stage_id()
stage_id = get_current_stage_id()
rt_stage = usdrt.Usd.Stage.Attach(stage_id)
if rt_stage is None:
return
Expand Down