File tree Expand file tree Collapse file tree 3 files changed +31
-1
lines changed
Expand file tree Collapse file tree 3 files changed +31
-1
lines changed Original file line number Diff line number Diff line change 1+ Version 3.1.0
2+ ====
3+
4+ Major features
5+ --------------
6+
7+ Two new interfaces this release:
8+
9+ - SYSTEC contributed by @idaniel86 in PR #466
10+ - CANalyst-II contributed by @smeng9 in PR #476
11+
12+
13+ Other notable changes
14+ ---------------------
15+
16+ - #477 kvaser interface now supports bus statistics via a custom bus method.
17+ - #471 fix CAN FD issue in kvaser interface
18+ - #434 neovi supports receiving own messages
19+ - #447 improvements to serial interface:
20+ * to allow receiving partial messages
21+ * to fix issue with DLC of remote frames
22+ * addition of unit tests
23+ - #462 `Notifier` issue with asyncio.
24+ - #481 - Fix PCAN support on OSX.
25+ - #455 minor fix to `Message` initializer.
26+
27+
128Version 3.0.0
229====
330
Original file line number Diff line number Diff line change 88
99import logging
1010
11- __version__ = "3.0.0 "
11+ __version__ = "3.1.0-rc.1 "
1212
1313log = logging .getLogger ('can' )
1414
@@ -21,6 +21,7 @@ class CanError(IOError):
2121 """
2222 pass
2323
24+
2425from .listener import Listener , BufferedReader , RedirectReader
2526try :
2627 from .listener import AsyncBufferedReader
Original file line number Diff line number Diff line change @@ -46,6 +46,8 @@ The CAN viewer terminal script was contributed by Kristian Sloth Lauszus in 2018
4646
4747The CANalyst-II interface was contributed by Shaoyu Meng in 2018.
4848
49+ The SYSTEC interface was contributed by @idaniel86
50+
4951Support for CAN within Python
5052-----------------------------
5153
You can’t perform that action at this time.
0 commit comments