diff --git a/library/CHANGELOG.txt b/library/CHANGELOG.txt index 0a14518..4a86689 100644 --- a/library/CHANGELOG.txt +++ b/library/CHANGELOG.txt @@ -1,3 +1,8 @@ +0.0.3 +----- + +* Bugfix: support 0 init value of MODE_CONFIG register + 0.0.2 ----- diff --git a/library/max30105/__init__.py b/library/max30105/__init__.py index 2eea6d9..086943e 100644 --- a/library/max30105/__init__.py +++ b/library/max30105/__init__.py @@ -5,7 +5,7 @@ import time -__version__ = '0.0.2' +__version__ = '0.0.3' CHIP_ID = 0x15 I2C_ADDRESS = 0x57 diff --git a/library/setup.py b/library/setup.py index f957590..075b6d0 100755 --- a/library/setup.py +++ b/library/setup.py @@ -39,7 +39,7 @@ setup( name='max30105', - version='0.0.2', + version='0.0.3', author='Philip Howard', author_email='phil@pimoroni.com', description="""Python library for the MAX30105 Smoke/Pulse Detector""",