rclnodejs 0.27.3 → 0.27.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rclnodejs",
3
- "version": "0.27.3",
3
+ "version": "0.27.4",
4
4
  "description": "ROS2.0 JavaScript client with Node.js",
5
5
  "main": "index.js",
6
6
  "types": "types/index.d.ts",
@@ -325,7 +325,7 @@ NAN_METHOD(CreateTimer) {
325
325
  reinterpret_cast<rcl_timer_t*>(malloc(sizeof(rcl_timer_t)));
326
326
  *timer = rcl_get_zero_initialized_timer();
327
327
 
328
- #if ROS_VERSION > 2205 // After humble.
328
+ #if ROS_VERSION > 2305 // After Iron.
329
329
  THROW_ERROR_IF_NOT_EQUAL(
330
330
  RCL_RET_OK,
331
331
  rcl_timer_init2(timer, clock, context, RCL_MS_TO_NS(period_ms), nullptr,