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.46.1"
version = "0.46.2"

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


0.46.2 (2025-09-13)
~~~~~~~~~~~~~~~~~~~

Changed
^^^^^^^

* Fixed missing actuator indices in :meth:`~isaaclab.envs.mdp.events.randomize_actuator_gains`


0.46.1 (2025-09-10)
~~~~~~~~~~~~~~~~~~~

Expand Down
2 changes: 1 addition & 1 deletion source/isaaclab/isaaclab/envs/mdp/events.py
Original file line number Diff line number Diff line change
Expand Up @@ -602,7 +602,7 @@ def randomize(data: torch.Tensor, params: tuple[float, float]) -> torch.Tensor:
raise TypeError("Actuator joint indices must be a slice or a torch.Tensor.")
elif isinstance(actuator.joint_indices, slice):
# we take the joints defined in the asset config
global_indices = torch.tensor(self.asset_cfg.joint_ids, device=self.asset.device)
global_indices = actuator_indices = torch.tensor(self.asset_cfg.joint_ids, device=self.asset.device)
else:
# we take the intersection of the actuator joints and the asset config joints
actuator_joint_indices = actuator.joint_indices
Expand Down
Loading