Skip to content

Commit 067e7f7

Browse files
Release v2.0.0
1 parent f5fd9af commit 067e7f7

File tree

3 files changed

+7
-4
lines changed

3 files changed

+7
-4
lines changed

CHANGELOG.md

+5-2
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+
## [2.0.0] - 2024-07-25
8+
79
### Added
810

911
- CICD: Add changelog workflow
@@ -13,8 +15,8 @@ All notable changes to this project will be documented in this file.
1315

1416
### Changed
1517

18+
- **Breaking:** Uppercase paths in Python for consistency with `robot_descriptions.py`
1619
- Refactor the URDF generation process using Xacro and `xacrodoc`
17-
- python: Uppercase paths for consistency with `robot_descriptions.py`
1820

1921
## [1.6.0] - 2024-07-05
2022

@@ -120,7 +122,8 @@ Initial robot description.
120122
- Robot description (kinematics, inertias, collisions) in URDF
121123
- Scripts to compute box and cylinder inertias
122124

123-
[unreleased]: https://github.com/upkie/upkie_description/compare/v1.6.0...HEAD
125+
[unreleased]: https://github.com/upkie/upkie_description/compare/v2.0.0...HEAD
126+
[2.0.0]: https://github.com/upkie/upkie_description/compare/v1.6.0...v2.0.0
124127
[1.6.0]: https://github.com/upkie/upkie_description/compare/v1.5.0...v1.6.0
125128
[1.5.0]: https://github.com/upkie/upkie_description/compare/v1.4.0...v1.5.0
126129
[1.4.0]: https://github.com/upkie/upkie_description/compare/v1.3.0...v1.4.0

package.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0"?>
22
<package>
33
<name>upkie_description</name>
4-
<version>1.6.0</version>
4+
<version>2.0.0</version>
55
<description>Description package for the Upkie wheeled biped robot</description>
66
<author>Stéphane Caron</author>
77
<maintainer email="[email protected]">Stéphane Caron</maintainer>

python/upkie_description/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
from .paths import MESHES_PATH, PATH, URDF_PATH
1313

14-
__version__ = "1.6.0"
14+
__version__ = "2.0.0"
1515

1616
__all__ = [
1717
"MESHES_PATH",

0 commit comments

Comments
 (0)