Skip to content

Commit f156be2

Browse files
Merge pull request #601 from ARISE-Initiative/v1.5.1
Bump version 1.5.0 -> 1.5.1
2 parents 06550e0 + a071383 commit f156be2

File tree

5 files changed

+37
-10
lines changed

5 files changed

+37
-10
lines changed

docs/changelog.md

Lines changed: 33 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,39 @@
11
# Changelog
22

3+
## Version 1.5.1
34

5+
- **Documentation Updates**:
6+
- Updated `basicusage.md`, overview page, demo docs, teleop usage info, devices, and related docs.
7+
- Added a CI doc update workflow and `.nojekyll` fix.
8+
- Simplified composite controller keywords and updated robots section and task images.
9+
10+
- **Bug Fixes**:
11+
- Fixed segmentation demo, part controller demo, demo renderer, joint and actuator issues, equality removal, and orientation mismatch in Fourier hands.
12+
13+
- **Features/Enhancements**:
14+
- Added GymWrapper support for both `gym` and `gymnasium` with `dict_obs`.
15+
- Updated DexMimicGen assets and included a default whole-body Mink IK config.
16+
- Improved CI to check all tests and print video save paths in demo recordings.
17+
18+
- **Miscellaneous**:
19+
- Added troubleshooting for SpaceMouse failures and terminated `mjviewer` on resets.
20+
- Adjusted OSC position fixes and updated part controller JSONs.
421

522
## Version 1.5.0
623

7-
<div class="admonition warning">
8-
<p class="admonition-title">Breaking API changes</p>
9-
<div>
10-
<ul>New controller design.</ul>
11-
</div>
12-
</div>
24+
The 1.5 release of **Robosuite** introduces significant advancements to extend flexibility and realism in robotic simulations. Key highlights include support for diverse robot embodiments (e.g., humanoids), custom robot compositions, composite controllers (such as whole-body controllers), expanded teleoperation devices, and photorealistic rendering capabilities.
25+
26+
### New Features
27+
- **Diverse Robot Embodiments**: Support for complex robots, including humanoids, allowing exploration of advanced manipulation and mobility tasks. Please see [robosuite_models](https://github.com/ARISE-Initiative/robosuite_models) for extra robosuite-compatible robot models.
28+
- **Custom Robot Composition**: Users can now build custom robots from modular components, offering extensive configuration options.
29+
- **Composite Controllers**: New controller abstraction includes whole-body controllers, and the ability to control robots with composed body parts, arms, and grippers.
30+
- **Additional Teleoperation Devices**: Expanded compatibility with teleoperation tools like drag-and-drop in the MuJoCo viewer and Apple Vision Pro.
31+
- **Photorealistic Rendering**: Integration of NVIDIA Isaac Sim for enhanced, real-time photorealistic visuals, bringing simulations closer to real-world fidelity.
32+
33+
### Improvements
34+
- **Updated Documentation**: New tutorials and expanded documentation on utilizing advanced controllers, teleoperation, and rendering options.
35+
- **Simulation speed improvement**: By default we set the `lite_physics` flag to True to skip redundant calls to [`env.sim.step()`](https://github.com/ARISE-Initiative/robosuite/blob/29e73bd41f9bc43ba88bb7d2573b868398905819/robosuite/environments/base.py#L444)
36+
37+
### Migration
38+
39+
- Composite controller refactoring: please see example of [usage](https://github.com/ARISE-Initiative/robosuite/blob/29e73bd41f9bc43ba88bb7d2573b868398905819/robosuite/examples/third_party_controller/mink_controller.py#L421)

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@
8484

8585
# General information about the project.
8686
project = "robosuite"
87-
copyright = "Stanford University and The University of Texas at Austin 2022"
87+
copyright = "Stanford University and The University of Texas at Austin 2025"
8888
author = "the robosuite core team"
8989

9090
# The version info for the project you're documenting, acts as replacement for

robosuite/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
"Could not load the mink-based whole-body IK. Make sure you install related import properly, otherwise you will not be able to use the default IK controller setting for GR1 robot."
4242
)
4343

44-
__version__ = "1.5.0"
44+
__version__ = "1.5.1"
4545
__logo__ = """
4646
; / ,--.
4747
["] ["] ,< |__**|

robosuite/renderers/context/egl_context.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Modifications Copyright 2022 The robosuite Authors
1+
# Modifications Copyright 2025 The robosuite Authors
22
# Original Copyright 2018 The dm_control Authors
33
#
44
# Licensed under the Apache License, Version 2.0 (the "License");

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
author="Yuke Zhu",
3434
url="https://github.com/ARISE-Initiative/robosuite",
3535
author_email="yukez@cs.utexas.edu",
36-
version="1.5.0",
36+
version="1.5.1",
3737
long_description=long_description,
3838
long_description_content_type="text/markdown",
3939
)

0 commit comments

Comments
 (0)