Skip to content

Commit 0b234bb

Browse files
committed
release 2.0.2
1 parent e007b20 commit 0b234bb

File tree

3 files changed

+10
-8
lines changed

3 files changed

+10
-8
lines changed

.github/workflows/ros-ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
1-
name: ros2-devel
1+
name: ros2
22

33
# Controls when the action will run. Triggers the workflow on push or pull request
44
on:
55
push:
6-
branches: [ ros2-devel ]
6+
branches: [ ros2 ]
77
pull_request:
8-
branches: [ ros2-devel ]
8+
branches: [ ros2 ]
99

1010
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
1111
jobs:
12-
ros2-devel-ci:
12+
ros2-ci:
1313
runs-on: ubuntu-latest
1414
strategy:
1515
fail-fast: false
@@ -52,6 +52,6 @@ jobs:
5252
- name: Build and Test
5353
uses: ros-tooling/action-ros-ci@v0.2
5454
with:
55-
package-name: turtlebot3
55+
package-name: hls_lfcd_lds_driver
5656
target-ros2-distro: ${{ matrix.ros_distribution }}
5757
vcs-repo-file-url: ""

CHANGELOG.rst

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,10 @@ Changelog for package hls_lfcd_lds_driver
44

55
2.0.2 (2021-04-15)
66
------------------
7-
* fix laserscan bug
7+
* fix laserscan data bug
88
* rename nav2 params
9+
* fox bug, deprecated param name
10+
* use static param type for Galactic
911
* Contributors: Will Son
1012

1113
2.0.1 (2020-07-13)

src/hlds_laser_publisher.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -145,8 +145,8 @@ int main(int argc, char **argv)
145145
std::string frame_id;
146146
int baud_rate;
147147

148-
node->declare_parameter("port");
149-
node->declare_parameter("frame_id");
148+
node->declare_parameter<std::string>("port");
149+
node->declare_parameter<std::string>("frame_id");
150150

151151
node->get_parameter_or<std::string>("port", port, "/dev/ttyUSB0");
152152
node->get_parameter_or<std::string>("frame_id", frame_id, "laser");

0 commit comments

Comments
 (0)