Skip to content

release 3.1.0 into develop #517

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Feb 24, 2019
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 <felix.divo@gmail.com>
Kristian Sloth Lauszus <lauszus@gmail.com>
Shaoyu Meng <shaoyu@life-foundry.com>
Alexander Mueller<XelaRellum@web.de>
Jan Goeteyn
"ykzheng" <wishdo@gmail.com>
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