From 034843347aedb28a5ccbbd23979bd5fc08cbf402 Mon Sep 17 00:00:00 2001 From: Felix Divo Date: Sat, 23 Feb 2019 03:16:36 +0100 Subject: [PATCH] release 3.1.0 --- CHANGELOG.txt | 18 +++++++++++------- CONTRIBUTORS.txt | 3 +++ can/__init__.py | 2 +- 3 files changed, 15 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.txt b/CHANGELOG.txt index df6de2d22..1c3f71f13 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -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 diff --git a/CONTRIBUTORS.txt b/CONTRIBUTORS.txt index 68d82034b..c8129fb27 100644 --- a/CONTRIBUTORS.txt +++ b/CONTRIBUTORS.txt @@ -23,3 +23,6 @@ Pierre-Luc Tessier Gagné Felix Divo Kristian Sloth Lauszus Shaoyu Meng +Alexander Mueller +Jan Goeteyn +"ykzheng" diff --git a/can/__init__.py b/can/__init__.py index fcc87fd25..58b928ef6 100644 --- a/can/__init__.py +++ b/can/__init__.py @@ -8,7 +8,7 @@ import logging -__version__ = "3.1.0-rc.1" +__version__ = "3.1.0" log = logging.getLogger('can')