Skip to content
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
10 changes: 10 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,16 @@
OpenXC Python Library Changelog
===============================

v2.2.0
----------
* Improvements to usb traffic handling
* Updated message format based upton the protobuf file
* Improved memory management for protobuf
* SonarQube updates
* Github actions updated,travis decommissioned
* Support for the new get_vin command
openxc-control get_vin

v2.1.0
----------
* SonarQube integration
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ OpenXC for Python

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

:Version: 2.1.0
:Version: 2.2.0
:Web: http://openxcplatform.com
:Download: http://pypi.python.org/pypi/openxc/
:Documentation: http://python.openxcplatform.com
Expand Down
2 changes: 1 addition & 1 deletion docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ OpenXC for Python

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

:Version: 2.1.0
:Version: 2.2.0
:Web: http://openxcplatform.com
:Download: http://pypi.python.org/pypi/openxc/
:Documentation: http://python.openxcplatform.com
Expand Down
2 changes: 1 addition & 1 deletion openxc/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
which in turn needs access to this version information.)
"""

VERSION = (2, 1, 0)
VERSION = (2, 2, 0)

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

Expand Down