Skip to content

Commit 0b9d240

Browse files
authored
Prepare release 3.1.0 (#485)
* Add changelog for release 3.1.0
1 parent b2a7bde commit 0b9d240

File tree

3 files changed

+31
-1
lines changed

3 files changed

+31
-1
lines changed

CHANGELOG.txt

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,30 @@
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+
128
Version 3.0.0
229
====
330

can/__init__.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
import logging
1010

11-
__version__ = "3.0.0"
11+
__version__ = "3.1.0-rc.1"
1212

1313
log = logging.getLogger('can')
1414

@@ -21,6 +21,7 @@ class CanError(IOError):
2121
"""
2222
pass
2323

24+
2425
from .listener import Listener, BufferedReader, RedirectReader
2526
try:
2627
from .listener import AsyncBufferedReader

doc/history.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,8 @@ The CAN viewer terminal script was contributed by Kristian Sloth Lauszus in 2018
4646

4747
The CANalyst-II interface was contributed by Shaoyu Meng in 2018.
4848

49+
The SYSTEC interface was contributed by @idaniel86
50+
4951
Support for CAN within Python
5052
-----------------------------
5153

0 commit comments

Comments
 (0)