diff --git a/CHANGELOG.md b/CHANGELOG.md index 78eb12c..b025379 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/). ## Unreleased +## 0.8.1 - 2023-08-08 +### Fixed +- `uninode`: + - AttributeError caused by not importing Time object for ROS1. + ## 0.8.0 - 2023-07-20 ### Added - `reconfigure`: diff --git a/autopsy/ros1_node.py b/autopsy/ros1_node.py index fd1b94c..32e7dc9 100644 --- a/autopsy/ros1_node.py +++ b/autopsy/ros1_node.py @@ -12,6 +12,7 @@ pass from .ros1_qos import DurabilityPolicy +from .ros1_time import Time from .ros1_clock import Clock from .ros1_logger import Logger @@ -39,6 +40,9 @@ def __init__(self, name, **kwargs): """ rospy.init_node(name = name) + # Part of workaround for Time.now() + self.Time = Time() + def get_name(self): """Obtain the name of the node. diff --git a/package.xml b/package.xml index 487d068..a8bd2f1 100644 --- a/package.xml +++ b/package.xml @@ -4,7 +4,7 @@ schematypens="http://www.w3.org/2001/XMLSchema"?> autopsy - 0.8.0 + 0.8.1 A set of Python utils for F1Tenth project. Jaroslav Klapálek