diff --git a/CHANGELOG.md b/CHANGELOG.md index 66d62fd..10b6cfe 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,11 @@ ## [Unreleased] +## [2.0.2] - 2024-07-30 +### Fixed +- URDF files where only added when installed from source but not included in the wheel + that is pushed to PyPI. This is fixed now. + ## [2.0.1] - 2024-07-30 ### Changed - Converted to pure Python package. You can still use the package in a colcon workspace @@ -24,6 +29,7 @@ There is no changelog for this or earlier versions. --- -[Unreleased]: https://github.com/open-dynamic-robot-initiative/robot_properties_fingers/compare/v2.0.1...HEAD +[Unreleased]: https://github.com/open-dynamic-robot-initiative/robot_properties_fingers/compare/v2.0.2...HEAD +[2.0.2]: https://github.com/open-dynamic-robot-initiative/robot_properties_fingers/compare/v2.0.1...v2.0.2 [2.0.1]: https://github.com/open-dynamic-robot-initiative/robot_properties_fingers/compare/v1.1.0...v2.0.1 [1.1.0]: https://github.com/open-dynamic-robot-initiative/robot_properties_fingers/releases/tag/v1.1.0 diff --git a/package.xml b/package.xml index cd1b95d..8e896e6 100644 --- a/package.xml +++ b/package.xml @@ -2,7 +2,7 @@ robot_properties_fingers - 2.0.1 + 2.0.2 URDF files and meshes of the (Tri-)Finger robots. Felix Widmaier BSD-3-Clause diff --git a/setup.py b/setup.py index d350631..7dbbb28 100644 --- a/setup.py +++ b/setup.py @@ -45,7 +45,7 @@ def load_readme() -> str: setup( name=package_name, - version="2.0.1", + version="2.0.2", packages=find_packages(where="src"), package_dir={"": "src"}, package_data={"robot_properties_fingers": ["meshes/*.stl", "meshes/**/*.stl"]},