Skip to content

Commit 9a033e5

Browse files
authored
Merge pull request #126 from openxc/next
1.1.1
2 parents dde2234 + c0e4f8c commit 9a033e5

File tree

5 files changed

+8
-4
lines changed

5 files changed

+8
-4
lines changed

CHANGELOG.rst

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

4+
v1.1.1
5+
----------
6+
* Fix: Fixed Pip included files
7+
48
v1.1.0
59
----------
610
* Feature: Generate firmware now checks for duplicate entries in json and for improperly used keys and unrecognised attributes.

README.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.0
7+
:Version: 1.1.1
88
:Web: http://openxcplatform.com
99
:Download: http://pypi.python.org/pypi/openxc/
1010
:Documentation: http://python.openxcplatform.com

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

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

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
],
3232
url='http://github.com/openxc/openxc-python',
3333
packages=find_packages(exclude=["tests", "tests.*"]),
34-
package_data={'openxc': ['generator/signals.cpp*'], 'openxc': ['tools/templates/dashboard.html*']},
34+
package_data={'openxc': ['generator/signals.cpp*', 'tools/templates/dashboard.html*']},
3535
test_suite='nose.collector',
3636
tests_require=['nose'],
3737
install_requires=install_reqs,

0 commit comments

Comments
 (0)