Skip to content

Commit 509ac36

Browse files
authored
Merge pull request #135 from openxc/2.0.0
2.0.0
2 parents 5a54c6a + c05505e commit 509ac36

File tree

4 files changed

+14
-3
lines changed

4 files changed

+14
-3
lines changed

CHANGELOG.rst

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

4+
v2.0.0
5+
----------
6+
* Known Issue: OpenXC python must be used with firmware 8.0.0 or greater.
7+
* Feature: openxc-generate-firmware-code generator now generates signals.cpp in a more memory efficent way.
8+
* Feature: Add dashboard on message change highlighting.
9+
* Feature: Add column sorting and filtering on dashboard.
10+
* Feature: Add more verbosity to libusb errors.
11+
* Fix: Fix more python 3 migration byte bugs.
12+
413
v1.1.1
514
----------
615
* Fix: Fixed Pip included files

README.rst

Lines changed: 3 additions & 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: 1.1.1
7+
:Version: 2.0.0
88
:Web: http://openxcplatform.com
99
:Download: http://pypi.python.org/pypi/openxc/
1010
:Documentation: http://python.openxcplatform.com
@@ -30,6 +30,8 @@ In addition to a port of the Android library API, the package also contains a
3030
number of command-line tools for connecting to the CAN translator and
3131
manipulating previously recorded vehicle data.
3232

33+
Due to changes in signals.cpp openxc-python Version 2.0.0 must be used with vi-firmware 8.0.0 or greater.
34+
3335
To package run "setup.py sdist bdist_wheel"
3436
to push to pypi run "python -m twine upload dist/\*"
3537
Version files:

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: 1.1.1
7+
:Version: 2.0.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 = (1, 1, 1)
9+
VERSION = (2, 0, 0)
1010

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

0 commit comments

Comments
 (0)