Skip to content

Commit

Permalink
feat(default_ad_api): release adapi v1.1.0 (autowarefoundation#6479)
Browse files Browse the repository at this point in the history
Signed-off-by: Takagi, Isamu <[email protected]>
  • Loading branch information
isamu-takagi authored and StepTurtle committed Feb 27, 2024
1 parent 0c060a2 commit 592a47d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion system/default_ad_api/src/interface.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ InterfaceNode::InterfaceNode(const rclcpp::NodeOptions & options) : Node("interf
{
const auto on_interface_version = [](auto, auto res) {
res->major = 1;
res->minor = 0;
res->minor = 1;
res->patch = 0;
};

Expand Down
2 changes: 1 addition & 1 deletion system/default_ad_api/test/node/interface_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@

if response.major != 1:
exit(1)
if response.minor != 0:
if response.minor != 1:
exit(1)
if response.patch != 0:
exit(1)
Expand Down

0 comments on commit 592a47d

Please sign in to comment.