Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 11 additions & 7 deletions CHANGELOG.txt
Original file line number Diff line number Diff line change
Expand Up @@ -13,16 +13,20 @@ Two new interfaces this release:
Other notable changes
---------------------

- #477 kvaser interface now supports bus statistics via a custom bus method.
- #471 fix CAN FD issue in kvaser interface
- #434 neovi supports receiving own messages
- #447 improvements to serial interface:
- #477 The kvaser interface now supports bus statistics via a custom bus method.
- #434 neovi now supports receiving own messages
- #490 Adding option to override the neovi library name
- #488 Allow simultaneous access to IXXAT cards
- #447 Improvements to serial interface:
* to allow receiving partial messages
* to fix issue with DLC of remote frames
* addition of unit tests
- #462 `Notifier` issue with asyncio.
- #481 - Fix PCAN support on OSX.
- #455 minor fix to `Message` initializer.
- #497 Small API changes to `Message` and added unit tests
- #471 Fix CAN FD issue in kvaser interface
- #462 Fix `Notifier` issue with asyncio
- #481 Fix PCAN support on OSX
- #455 Fix to `Message` initializer
- Small bugfixes and improvements


Version 3.0.0
Expand Down
3 changes: 3 additions & 0 deletions CONTRIBUTORS.txt
Original file line number Diff line number Diff line change
Expand Up @@ -23,3 +23,6 @@ Pierre-Luc Tessier Gagné
Felix Divo <[email protected]>
Kristian Sloth Lauszus <[email protected]>
Shaoyu Meng <[email protected]>
Alexander Mueller<[email protected]>
Jan Goeteyn
"ykzheng" <[email protected]>
2 changes: 1 addition & 1 deletion can/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

import logging

__version__ = "3.1.0-rc.1"
__version__ = "3.1.0"

log = logging.getLogger('can')

Expand Down