Skip to content

Commit 724ee2b

Browse files
authored
feat(CanTp): use queues to avoid polling (#14)
* feat(CanTp): use queues to avoid busy waiting
1 parent 462157f commit 724ee2b

File tree

4 files changed

+188
-160
lines changed

4 files changed

+188
-160
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
11
# Changelog
22
All notable changes to this project will be documented in this file.
33

4+
## [3.0.3]
5+
6+
### Features
7+
- ``ResettableTimer``: add properties ``elapsedTime`` and ``remainingTime``
8+
- ``CanTp``: replace polling with blocking queues
9+
- ``CanTp``: add ``st_min`` attribute and ``encode_st_min`` method
10+
411
## [3.0.2]
512

613
### Features

setup.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
tests_require=["pytest", "pytest-mock"],
2929
extras_require={"test": ["pytest", "pytest-mock"]},
3030
# *strongly* suggested for sharing
31-
version="3.0.2",
31+
version="3.0.3",
3232
# The license can be anything you like
3333
license="MIT",
3434
description="Please use python-uds instead, this is a refactored version with breaking changes, only for pykiso",
@@ -39,6 +39,8 @@
3939
"Programming Language :: Python :: 3.7",
4040
"Programming Language :: Python :: 3.8",
4141
"Programming Language :: Python :: 3.9",
42+
"Programming Language :: Python :: 3.10",
43+
"Programming Language :: Python :: 3.11",
4244
"Operating System :: OS Independent",
4345
],
4446
include_package_data=True,

0 commit comments

Comments
 (0)