Skip to content

Commit 8f1eb8b

Browse files
authored
Merge pull request #153 from openxc/release2.1.0
Release 2.1.0 versioning
2 parents 564a62c + f98ae4f commit 8f1eb8b

File tree

4 files changed

+13
-4
lines changed

4 files changed

+13
-4
lines changed

CHANGELOG.rst

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,14 @@
11
OpenXC Python Library Changelog
22
===============================
33

4+
v2.1.0
5+
----------
6+
* SonarQube integration
7+
* Fix: Modem configuration for c5 cellar build now properly sets baud rate
8+
* Fix: Protobuf general improvements
9+
* Keyboard interupt via <ctrl>c added to openxc-dump and Obd2 Scanner
10+
* Stitching Feature, large messages are now packaged and sent in smaller chunks from the vi
11+
412
v2.0.0
513
----------
614
* Known Issue: OpenXC python must be used with firmware 8.0.0 or greater.

README.rst

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ OpenXC for Python
44

55
.. image:: https://github.com/openxc/openxc-python/raw/master/docs/_static/logo.png
66

7-
:Version: 2.0.0
7+
:Version: 2.1.0
88
:Web: http://openxcplatform.com
99
:Download: http://pypi.python.org/pypi/openxc/
1010
:Documentation: http://python.openxcplatform.com
@@ -31,6 +31,7 @@ number of command-line tools for connecting to the CAN translator and
3131
manipulating previously recorded vehicle data.
3232

3333
Due to changes in signals.cpp openxc-python Version 2.0.0 must be used with vi-firmware 8.0.0 or greater.
34+
Due to changes with large diagnostic responses Version 2.1.0 must be used with vi-firmware 8.1.0 or greater.
3435

3536
To package run "setup.py sdist bdist_wheel"
3637
to push to pypi run "python -m twine upload dist/\*"
@@ -44,6 +45,6 @@ Version files:
4445
License
4546
========
4647

47-
Copyright (c) 2012-2017 Ford Motor Company
48+
Copyright (c) 2012-2020 Ford Motor Company
4849

4950
Licensed under the BSD license.

docs/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ OpenXC for Python
44

55
.. image:: https://github.com/openxc/openxc-python/raw/master/docs/_static/logo.png
66

7-
:Version: 2.0.0
7+
:Version: 2.1.0
88
:Web: http://openxcplatform.com
99
:Download: http://pypi.python.org/pypi/openxc/
1010
:Documentation: http://python.openxcplatform.com

openxc/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
which in turn needs access to this version information.)
77
"""
88

9-
VERSION = (2, 0, 0)
9+
VERSION = (2, 1, 0)
1010

1111
__version__ = '.'.join(map(str, VERSION))
1212

0 commit comments

Comments
 (0)