diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 5bf4d787..5edd68db 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -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. diff --git a/README.rst b/README.rst index fdd65a4e..65cf24f0 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: 1.1.0 +:Version: 1.1.1 :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 56dbdb0f..e56ab101 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: 1.1.0 +:Version: 1.1.1 :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 3869d1a0..d2c2b444 100644 --- a/openxc/version.py +++ b/openxc/version.py @@ -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)) diff --git a/setup.py b/setup.py index c6829e10..edda0455 100644 --- a/setup.py +++ b/setup.py @@ -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,