diff --git a/CHANGELOG.md b/CHANGELOG.md index a44b4a2..c3cae41 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +# v1.0.2 + +### Bug Fixes + +* Fixed plugin directory in user.py. Calling `python ./user.py --list` lists all the plugins now. +* Cleaned up BluePy import for ganglion. +* Test coverage improvements for Cyton. + # v1.0.1 ### Bug Fixes diff --git a/setup.py b/setup.py index f14e87c..bbedbb5 100644 --- a/setup.py +++ b/setup.py @@ -1,7 +1,7 @@ from setuptools import setup, find_packages setup(name = 'OpenBCI_Python', - version = '1.0.1', + version = '1.0.2', description = 'A lib for controlling OpenBCI Devices', author='AJ Keller', author_email='pushtheworldllc@gmail.com', @@ -9,6 +9,6 @@ packages=find_packages(), install_requires=['numpy'], url='https://github.com/openbci/openbci_python', # use the URL to the github repo - download_url='https://github.com/openbci/openbci_python/archive/v1.0.1.tar.gz', + download_url='https://github.com/openbci/openbci_python/archive/v1.0.2.tar.gz', keywords=['device', 'control', 'eeg', 'emg', 'ekg', 'ads1299', 'openbci', 'ganglion', 'cyton', 'wifi'], # arbitrary keywords zip_safe=False)