From b7ad493f9e482db54471576ed540b53a879d3e5b Mon Sep 17 00:00:00 2001 From: Rick Staa Date: Mon, 1 Jan 2024 21:30:28 +0100 Subject: [PATCH] chore(noetic): release 2.17.1 (#211) --- .release-please-manifest.json | 2 +- CHANGELOG.md | 7 +++++++ package.json | 2 +- panda_gazebo/package.xml | 2 +- panda_gazebo/src/panda_gazebo/version.py | 2 +- 5 files changed, 11 insertions(+), 4 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 6846c98b..6e5fe6cd 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "2.17.0" + ".": "2.17.1" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 33fc2d77..4503e909 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,13 @@ All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. +## [2.17.1](https://github.com/rickstaa/panda-gazebo/compare/v2.17.0...v2.17.1) (2024-01-01) + + +### Documentation + +* fix index syntax errors ([#210](https://github.com/rickstaa/panda-gazebo/issues/210)) ([be06ddd](https://github.com/rickstaa/panda-gazebo/commit/be06ddd60accb1f9d85c5669cf10a5be5d117ae6)) + ## [2.17.0](https://github.com/rickstaa/panda-gazebo/compare/v2.16.1...v2.17.0) (2024-01-01) diff --git a/package.json b/package.json index aadf6260..9444d511 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "panda-gazebo", - "version": "2.17.0", + "version": "2.17.1", "description": "A package that contains all the ROS components needed for creating a Panda Emika Franka Gazebo simulation", "keywords": [ "robotics", diff --git a/panda_gazebo/package.xml b/panda_gazebo/package.xml index c32416eb..a66811aa 100755 --- a/panda_gazebo/package.xml +++ b/panda_gazebo/package.xml @@ -1,7 +1,7 @@ panda_gazebo - 2.17.0 + 2.17.1 A package that allows you to train several ROS based robots using Gazebo. diff --git a/panda_gazebo/src/panda_gazebo/version.py b/panda_gazebo/src/panda_gazebo/version.py index 26330871..f1273e6e 100644 --- a/panda_gazebo/src/panda_gazebo/version.py +++ b/panda_gazebo/src/panda_gazebo/version.py @@ -1,3 +1,3 @@ """Stores the package version number so that it can be accessed from other modules.""" -__version__ = "2.17.0" +__version__ = "2.17.1" __version_tuple__ = __version__.split(".")