Skip to content

Commit

Permalink
feat(default_ad_api): release adapi v1.5.0 (autowarefoundation#8267)
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 shmpwk committed Oct 15, 2024
1 parent 5db3bae commit 6028da0
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 = 3;
res->minor = 5;
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 != 3:
if response.minor != 5:
exit(1)
if response.patch != 0:
exit(1)
Expand Down

0 comments on commit 6028da0

Please sign in to comment.