Skip to content

Commit df5c76e

Browse files
Release v1.12.0
1 parent 4e3679d commit df5c76e

File tree

5 files changed

+72
-6
lines changed

5 files changed

+72
-6
lines changed

.github/workflows/packaging.yml

Lines changed: 63 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
1+
name: Packaging
2+
3+
on:
4+
push:
5+
branches: [ main ]
6+
pull_request:
7+
branches: [ main ]
8+
9+
jobs:
10+
conda:
11+
name: "Install from conda-forge"
12+
runs-on: ubuntu-latest
13+
defaults:
14+
run:
15+
# See https://github.com/mamba-org/setup-micromamba?tab=readme-ov-file#about-login-shells
16+
shell: bash -leo pipefail {0}
17+
steps:
18+
- name: "Install Conda environment with Micromamba"
19+
uses: mamba-org/setup-micromamba@v1
20+
with:
21+
cache-downloads: true
22+
environment-name: pypi
23+
create-args: >-
24+
python=3.11
25+
robot_descriptions
26+
27+
- name: "Test module import"
28+
run: python -c "import robot_descriptions"
29+
30+
pypi:
31+
name: "Install from PyPI"
32+
runs-on: ubuntu-latest
33+
steps:
34+
- name: "Install dependencies"
35+
run: |
36+
python -m pip install --upgrade pip
37+
38+
- name: "Install package"
39+
run: python -m pip install robot_descriptions
40+
41+
- name: "Test module import"
42+
run: python -c "import robot_descriptions"
43+
44+
testpypi:
45+
name: "Install from TestPyPI"
46+
runs-on: ubuntu-latest
47+
steps:
48+
- name: "Install dependencies"
49+
run: |
50+
python -m pip install --upgrade pip
51+
52+
- name: "Install package"
53+
run: python -m pip install --index-url https://test.pypi.org/simple/ --extra-index-url https://pypi.org/simple/ robot_descriptions
54+
55+
- name: "Test module import"
56+
run: python -c "import robot_descriptions"
57+
58+
packaging_success:
59+
name: "Packaging success"
60+
runs-on: ubuntu-latest
61+
needs: [conda, pypi, testpypi]
62+
steps:
63+
- run: echo "Packaging workflow completed successfully"

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ All notable changes to this project will be documented in this file.
44

55
## [Unreleased]
66

7+
## [1.12.0] - 2024-08-08
8+
79
### Added
810

911
- Description: LEAP Hand v1
@@ -374,7 +376,8 @@ This initial release includes 33 robot descriptions:
374376
- Contributing instructions
375377
- This changelog
376378

377-
[unreleased]: https://github.com/robot-descriptions/robot_descriptions.py/compare/v1.11.0...HEAD
379+
[unreleased]: https://github.com/robot-descriptions/robot_descriptions.py/compare/v1.12.0...HEAD
380+
[1.12.0]: https://github.com/robot-descriptions/robot_descriptions.py/compare/v1.11.0...v1.12.0
378381
[1.11.0]: https://github.com/robot-descriptions/robot_descriptions.py/compare/v1.10.0...v1.11.0
379382
[1.10.0]: https://github.com/robot-descriptions/robot_descriptions.py/compare/v1.9.0...v1.10.0
380383
[1.9.0]: https://github.com/robot-descriptions/robot_descriptions.py/compare/v1.8.1...v1.9.0

CITATION.cff

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
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.11.0
5-
date-released: 2024-06-27
4+
version: 1.12.0
5+
date-released: 2024-08-08
66
url: "https://github.com/robot-descriptions/robot_descriptions.py"
77
license: "Apache-2.0"
88
authors:

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -283,11 +283,11 @@ If you use this project in your works, please cite as follows:
283283

284284
```bibtex
285285
@software{robot_descriptions_py,
286+
title = {{robot_descriptions.py: Robot descriptions in Python}},
286287
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},
287288
license = {Apache-2.0},
288-
title = {{robot_descriptions.py: Robot descriptions in Python}},
289289
url = {https://github.com/robot-descriptions/robot_descriptions.py},
290-
version = {1.11.0},
290+
version = {1.12.0},
291291
year = {2024}
292292
}
293293
```

robot_descriptions/__init__.py

Lines changed: 1 addition & 1 deletion
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.11.0"
9+
__version__ = "1.12.0"

0 commit comments

Comments
 (0)