Skip to content

Commit ae16b95

Browse files
Merge pull request #78 from husarion/2.1.0-20240723
Release 2.1.0 to ros2
2 parents eaee6d2 + d497881 commit ae16b95

File tree

4 files changed

+19
-7
lines changed

4 files changed

+19
-7
lines changed

.github/workflows/release-repository.yaml

+5-5
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,11 @@ jobs:
6060
gh pr merge ${{ steps.catkin_release.outputs.created_branch }} \
6161
--merge --delete-branch
6262
63+
- name: Grant permissions # Required permission grant after at-wat/catkin-release-action@v1 action
64+
if: ${{ fromJSON(inputs.automatic_mode) == true }}
65+
run: |
66+
sudo chmod -R ugo+rwX .
67+
6368
- name: Checkout to main branch
6469
if: ${{ github.event.inputs.release_candidate != env.MAIN_BRANCH && fromJSON(inputs.automatic_mode)
6570
== true }}
@@ -104,11 +109,6 @@ jobs:
104109
--title ${{ github.event.inputs.release_name }} \
105110
--generate-notes
106111
107-
- name: Grant permissions
108-
if: ${{ env.DEVEL_BRANCH != env.MAIN_BRANCH && fromJSON(inputs.automatic_mode) == true }}
109-
run: |
110-
sudo chmod -R ugo+rwX .
111-
112112
- name: Checkout to devel branch
113113
if: ${{ env.DEVEL_BRANCH != env.MAIN_BRANCH && fromJSON(inputs.automatic_mode) == true }}
114114
uses: actions/checkout@v4

CHANGELOG.rst

+11
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,17 @@
22
Changelog for package panther_msgs
33
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
44

5+
2.1.0 (2024-08-02)
6+
------------------
7+
* Merge pull request `#76 <https://github.com/husarion/panther_msgs/issues/76>`_ from husarion/hotfix-handle-can-timeout
8+
* Rename can communication errors
9+
* Add heartbeat timeout message attribute
10+
* Merge pull request `#75 <https://github.com/husarion/panther_msgs/issues/75>`_ from husarion/ros2-grant-permission
11+
* Uncomment steps
12+
* Test checking out
13+
* Grant permission before main checkout
14+
* Contributors: Jan brzyk, Paweł Irzyk, pawelirh
15+
516
2.0.4 (2024-06-28)
617
------------------
718
* Bugfix: Grant permission and add warning in release workflow (`#71 <https://github.com/husarion/panther_msgs/issues/71>`_)

msg/MotorControllerState.msg

+2-1
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,5 @@ panther_msgs/RuntimeError right_motor_runtime_error
1010

1111
bool motor_states_data_timed_out
1212
bool driver_state_data_timed_out
13-
bool can_net_err
13+
bool can_error
14+
bool heartbeat_timeout

package.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<?xml-model href="http://download.ros.org/schema/package_format3.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?>
33
<package format="3">
44
<name>panther_msgs</name>
5-
<version>2.0.4</version>
5+
<version>2.1.0</version>
66
<description>Custom messages for Panther robot.</description>
77
<maintainer email="support@husarion.com">Husarion</maintainer>
88
<license>Apache License 2.0</license>

0 commit comments

Comments
 (0)