Skip to content

Commit

Permalink
update changelog and add test
Browse files Browse the repository at this point in the history
  • Loading branch information
jtigue-bdai committed Feb 4, 2025
1 parent 7eefdb8 commit af0c2c8
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 1 deletion.
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.33.14"
version = "0.33.15"

# 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
Expand Up @@ -7,6 +7,14 @@ Changelog
Fixed
^^^^^

* Fixed accessing :attr:`~isaaclab.sensors.Imu.data` before a sensor update is called.

0.33.14 (2025-02-01)
~~~~~~~~~~~~~~~~~~~~

Fixed
^^^^^

* Fixed not updating the timestamp of ``body_link_state_w`` and ``body_com_state_w`` when ``write_root_pose_to_sim`` and ``write_joint_state_to_sim`` in the ``Articulation`` class are called.

0.33.13 (2025-01-30)
Expand Down
4 changes: 4 additions & 0 deletions source/isaaclab/test/sensors/test_imu.py
Original file line number Diff line number Diff line change
Expand Up @@ -275,6 +275,10 @@ def test_constant_acceleration(self):
)
* (idx + 1)
)
# check that sensor data can be accessed at time=0
if idx == 0:
_ = self.scene.sensors["imu_ball"].data.lin_acc_b
_ = self.scene.sensors["imu_ball"].data.ang_acc_b
# write data to sim
self.scene.write_data_to_sim()
# perform step
Expand Down

0 comments on commit af0c2c8

Please sign in to comment.