From 77dab4dcd99930590639386e6d545c519a2a66b9 Mon Sep 17 00:00:00 2001 From: GenoJAFord Date: Mon, 9 Aug 2021 21:02:03 +0000 Subject: [PATCH] Updated python openxc version to 2.2.0 and added update notes --- CHANGELOG.rst | 10 ++++++++++ README.rst | 2 +- docs/index.rst | 2 +- openxc/version.py | 2 +- 4 files changed, 13 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 9d78a4b..29a1d93 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -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 diff --git a/README.rst b/README.rst index 9fa12c6..873c894 100644 --- a/README.rst +++ b/README.rst @@ -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 diff --git a/docs/index.rst b/docs/index.rst index c9efc4a..1070fb4 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -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 diff --git a/openxc/version.py b/openxc/version.py index b122ea3..5f07b80 100644 --- a/openxc/version.py +++ b/openxc/version.py @@ -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))