8000 Merge pull request #257 from hardbyte/release-2.1.0 · hardbyte/python-can@e9579ce · GitHub
[go: up one dir, main page]

Skip to content

Commit e9579ce

Browse files
authored
Merge pull request #257 from hardbyte/release-2.1.0
Merge release 2.1.0 into develop
2 parents d8942ce + 9ca4952 commit e9579ce

File tree

3 files changed

+40
-2
lines changed

3 files changed

+40
-2
lines changed

CHANGELOG.txt

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
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/

can/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
import logging
77

8-
__version__ = "2.1.0.rc2"
8+
__version__ = "2.1.0"
99

1010
log = logging.getLogger('can')
1111

doc/development.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

4444
Code Structure

0 commit comments

Comments
 (0)
0