File tree Expand file tree Collapse file tree 3 files changed +40
-2
lines changed
Expand file tree Collapse file tree 3 files changed +40
-2
lines changed Original file line number Diff line number Diff line change 1+ Version 2.1.0 (2018-02-17)
2+ =====
3+
4+ * Support for out of tree can interfaces with pluggy.
5+ * Initial support for CAN-FD for socketcan_native and kvaser interfaces.
6+ * Neovi interface now uses Intrepid Control Systems's own interface library.
7+ * Improvements and new documentation for SQL reader/writer.
8+ * Fix bug in neovi serial number decoding.
9+ * Add testing on OSX to TravisCI
10+ * Fix non english decoding error on pcan
11+ * Other misc improvements and bug fixes
12+
13+
14+ Version 2.0.0 (2018-01-05
15+ =====
16+
17+ After an extended baking period we have finally tagged version 2.0.0!
18+
19+ Quite a few major Changes from v1.x:
20+
21+ * New interfaces:
22+ * Vector
23+ * NI-CAN
24+ * isCAN
25+ * neoVI
26+ * Simplified periodic send API with initial support for SocketCAN
27+ * Protocols module including J1939 support removed
28+ * Logger script moved to module `can.logger`
29+ * New `can.player` script to replay log files
30+ * BLF, ASC log file support added in new `can.io` module
31+
32+ You can install from [PyPi](https://pypi.python.org/pypi/python-can/2.0.0) with pip:
33+
34+ ```
35+ pip install python-can==2.0.0
36+ ```
37+
38+ The documentation for v2.0.0 is available at http://python-can.readthedocs.io/en/2.0.0/
Original file line number Diff line number Diff line change 55
66import logging
77
8- __version__ = "2.1.0.rc2 "
8+ __version__ = "2.1.0"
99
1010log = logging .getLogger ('can' )
1111
Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ Creating a Release
3838- Upload with twine ``twine upload dist/python-can-X.Y.Z* ``
3939- In a new virtual env check that the package can be installed with pip: ``pip install python-can==X.Y.Z ``
4040- Create a new tag in the repository.
41- - Check the release on PyPi and github.
41+ - Check the release on PyPi, readthedocs and github.
4242
4343
4444Code Structure
You can’t perform that action at this time.
0 commit comments