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
8 changes: 3 additions & 5 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,11 @@ All notable changes to this project will be documented in this file.

## [Unreleased]

## [1.21.0] - 2025-09-03

### Added

- Add "with hands" variant to the G1 MJCF description (thanks to @jonzamora)
- Description: TIAGo++ (MJCF) (thanks to @Danfoa)
- Description: ToddlerBot (URDF)
- Description: Unitree H1\_2 (MJCF) (thanks to @TonyZYT2000)
Expand All @@ -14,11 +17,6 @@ All notable changes to this project will be documented in this file.
### Changed

- CICD: Disable fail-fast when testing loaders
- Update `g1_mj_description` to load `g1_with_hands.xml` instead of `g1.xml`

### Fixed

- Update commit and URDF path of YAM description

### Fixed

Expand Down
8 changes: 6 additions & 2 deletions CITATION.cff
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
cff-version: 1.2.0
message: "If you find this code helpful, please cite it as below."
title: "robot_descriptions.py: Robot descriptions in Python"
version: 1.20.0
date-released: 2025-07-15
version: 1.21.0
date-released: 2025-09-03
url: "https://github.com/robot-descriptions/robot_descriptions.py"
license: "Apache-2.0"
authors:
Expand Down Expand Up @@ -32,6 +32,8 @@ authors:
- family-names: "Traversaro"
given-names: "Silvio"
orcid: "https://orcid.org/0000-0002-9283-6133"
- family-names: "Zamora"
given-names: "Jonathan"
- family-names: "Castro"
given-names: "Sebastian"
orcid: "https://orcid.org/0000-0001-5754-9959"
Expand All @@ -42,3 +44,5 @@ authors:
- family-names: "Jallet"
given-names: "Wilson"
orcid: "https://orcid.org/0000-0001-8222-2739"
- family-names: "Zhang"
given-names: "Yutong"
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -332,10 +332,10 @@ If you use this project in your works, please cite as follows:
```bibtex
@software{robot_descriptions_py,
title = {{robot_descriptions.py: Robot descriptions in Python}},
author = {Caron, Stéphane and Romualdi, Giulio and Kozlov, Lev and Ordoñez Apraez, Daniel Felipe and Tadashi Kussaba, Hugo and Bang, Seung Hyeon and Zakka, Kevin and Schramm, Fabian and Uru\c{c}, Jafar and Traversaro, Silvio and Castro, Sebastian and Tao, Haixuan Xavier and Yu, Justin and Jallet, Wilson and Zhang, Yutong},
author = {Caron, Stéphane and Romualdi, Giulio and Kozlov, Lev and Ordoñez Apraez, Daniel Felipe and Tadashi Kussaba, Hugo and Bang, Seung Hyeon and Zakka, Kevin and Schramm, Fabian and Uru\c{c}, Jafar and Traversaro, Silvio and Zamora, Jonathan and Castro, Sebastian and Tao, Haixuan Xavier and Yu, Justin and Jallet, Wilson and Zhang, Yutong},
license = {Apache-2.0},
url = {https://github.com/robot-descriptions/robot_descriptions.py},
version = {1.20.0},
version = {1.21.0},
year = {2025}
}
```
Expand Down
2 changes: 1 addition & 1 deletion robot_descriptions/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@

from ._descriptions import DESCRIPTIONS

__version__ = "1.20.0"
__version__ = "1.21.0"

__all__ = ["DESCRIPTIONS"]
Loading