Skip to content

Commit f3712f6

Browse files
Release v1.9.0
1 parent b5008e2 commit f3712f6

File tree

4 files changed

+25
-16
lines changed

4 files changed

+25
-16
lines changed

Diff for: CHANGELOG.md

+12-9
Original file line numberDiff line numberDiff line change
@@ -4,17 +4,19 @@ All notable changes to this project will be documented in this file.
44

55
## [Unreleased]
66

7+
## [1.9.0] - 2024-03-27
8+
79
### Added
810

911
- Citation file and BibTeX section in the readme
10-
- Description: Allegro Hand V3 (MJCF)
11-
- Description: ALOHA 2 (MJCF)
12-
- Description: Bitcraze Crazyflie 2.0 (MJCF)
13-
- Description: KUKA iiwa 14 (MJCF)
14-
- Description: Robotics OP3 (MJCF)
15-
- Description: Saywer (MJCF)
16-
- Description: Stretch 2 (MJCF)
17-
- Description: ViperX 300 6DOF (MJCF)
12+
- Description: Allegro Hand V3 (MJCF) (thanks to @kevinzakka)
13+
- Description: ALOHA 2 (MJCF) (thanks to @kevinzakka)
14+
- Description: Bitcraze Crazyflie 2.0 (MJCF) (thanks to @kevinzakka)
15+
- Description: KUKA iiwa 14 (MJCF) (thanks to @kevinzakka)
16+
- Description: Robotics OP3 (MJCF) (thanks to @kevinzakka)
17+
- Description: Saywer (MJCF) (thanks to @kevinzakka)
18+
- Description: Stretch 2 (MJCF) (thanks to @kevinzakka)
19+
- Description: ViperX 300 6DOF (MJCF) (thanks to @kevinzakka)
1820

1921
### Changed
2022

@@ -329,7 +331,8 @@ This initial release includes 33 robot descriptions:
329331
- Contributing instructions
330332
- This changelog
331333

332-
[unreleased]: https://github.com/qpsolvers/qpsolvers/compare/v1.8.1...HEAD
334+
[unreleased]: https://github.com/qpsolvers/qpsolvers/compare/v1.9.0...HEAD
335+
[1.9.0]: https://github.com/qpsolvers/qpsolvers/compare/v1.8.1...v1.9.0
333336
[1.8.1]: https://github.com/qpsolvers/qpsolvers/compare/v1.8.0...v1.8.1
334337
[1.8.0]: https://github.com/qpsolvers/qpsolvers/compare/v1.7.0...v1.8.0
335338
[1.7.0]: https://github.com/qpsolvers/qpsolvers/compare/v1.6.0...v1.7.0

Diff for: CITATION.cff

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
cff-version: 1.2.0
22
message: "If you find this code helpful, please cite it as below."
33
title: "robot_descriptions.py: Robot descriptions in Python"
4-
version: 1.8.1
4+
version: 1.9.0
55
date-released: 2024-01-29
66
url: "https://github.com/robot-descriptions/robot_descriptions.py"
77
license: "Apache-2.0"
@@ -21,3 +21,5 @@ authors:
2121
orcid: "https://orcid.org/0000-0002-7336-1443"
2222
- family-names: "Bang"
2323
given-names: "Seung Hyeon"
24+
- family-names: "Zakka"
25+
given-names: "Kevin"

Diff for: README.md

+9-5
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,17 @@ Importing a description for the first time automatically downloads and caches fi
1212

1313
## Installation
1414

15-
### Install from pip
15+
### PyPI
16+
17+
[![PyPI version](https://img.shields.io/pypi/v/robot_descriptions)](https://pypi.org/project/robot_descriptions/)
1618

1719
```console
1820
pip install robot_descriptions
1921
```
2022

21-
### Install from conda
23+
### Conda
24+
25+
[![Conda Version](https://img.shields.io/conda/vn/conda-forge/robot_descriptions.svg)](https://anaconda.org/conda-forge/robot_descriptions)
2226

2327
```console
2428
conda install -c conda-forge robot_descriptions
@@ -267,12 +271,12 @@ If you use `robot_descriptions.py` in your scientific works, please cite it *e.g
267271

268272
```bibtex
269273
@software{robot_descriptions_py2024,
270-
author = {Caron, Stéphane and Romualdi, Giulio and Kozlov, Lev and Ordonez, Daniel and Tadashi Kussaba, Hugo and Bang, Seung Hyeon},
274+
author = {Caron, Stéphane and Romualdi, Giulio and Kozlov, Lev and Ordonez, Daniel and Tadashi Kussaba, Hugo and Bang, Seung Hyeon and Zakka, Kevin},
271275
license = {Apache-2.0},
272-
month = feb,
276+
month = mar,
273277
title = {{robot_descriptions.py: Robot descriptions in Python}},
274278
url = {https://github.com/robot-descriptions/robot_descriptions.py},
275-
version = {1.8.1},
279+
version = {1.9.0},
276280
year = {2024}
277281
}
278282
```

Diff for: robot_descriptions/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@
66

77
"""Import open source robot description as Python modules."""
88

9-
__version__ = "1.8.1"
9+
__version__ = "1.9.0"

0 commit comments

Comments
 (0)