Skip to content
Merged

1.1.1 #126

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

v1.1.1
----------
* Fix: Fixed Pip included files

v1.1.0
----------
* Feature: Generate firmware now checks for duplicate entries in json and for improperly used keys and unrecognised attributes.
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: 1.1.0
:Version: 1.1.1
: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: 1.1.0
:Version: 1.1.1
: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, 0)
VERSION = (1, 1, 1)

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

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
],
url='http://github.com/openxc/openxc-python',
packages=find_packages(exclude=["tests", "tests.*"]),
package_data={'openxc': ['generator/signals.cpp*'], 'openxc': ['tools/templates/dashboard.html*']},
package_data={'openxc': ['generator/signals.cpp*', 'tools/templates/dashboard.html*']},
test_suite='nose.collector',
tests_require=['nose'],
install_requires=install_reqs,
Expand Down