Skip to content

Commit

Permalink
Merge pull request #135 from openxc/2.0.0
Browse files Browse the repository at this point in the history
2.0.0
  • Loading branch information
GenoJAFord committed Jan 27, 2020
2 parents 5a54c6a + c05505e commit 509ac36
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 3 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,15 @@
OpenXC Python Library Changelog
===============================

v2.0.0
----------
* Known Issue: OpenXC python must be used with firmware 8.0.0 or greater.
* Feature: openxc-generate-firmware-code generator now generates signals.cpp in a more memory efficent way.
* Feature: Add dashboard on message change highlighting.
* Feature: Add column sorting and filtering on dashboard.
* Feature: Add more verbosity to libusb errors.
* Fix: Fix more python 3 migration byte bugs.

v1.1.1
----------
* Fix: Fixed Pip included files
Expand Down
4 changes: 3 additions & 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: 1.1.1
:Version: 2.0.0
:Web: http://openxcplatform.com
:Download: http://pypi.python.org/pypi/openxc/
:Documentation: http://python.openxcplatform.com
Expand All @@ -30,6 +30,8 @@ In addition to a port of the Android library API, the package also contains a
number of command-line tools for connecting to the CAN translator and
manipulating previously recorded vehicle data.

Due to changes in signals.cpp openxc-python Version 2.0.0 must be used with vi-firmware 8.0.0 or greater.

To package run "setup.py sdist bdist_wheel"
to push to pypi run "python -m twine upload dist/\*"
Version files:
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: 1.1.1
:Version: 2.0.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 = (1, 1, 1)
VERSION = (2, 0, 0)

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

Expand Down

0 comments on commit 509ac36

Please sign in to comment.