mirror of
https://github.com/cmur2/python-bme680.git
synced 2024-12-22 02:54:28 +01:00
Prep for v1.0.4
This commit is contained in:
parent
097287e842
commit
da6ae97f1f
@ -1,3 +1,9 @@
|
||||
1.0.4
|
||||
-----
|
||||
|
||||
* Fix to range_sw_err for extremely high gas readings
|
||||
* Convert to unsigned int to fix negative gas readings
|
||||
|
||||
1.0.3
|
||||
-----
|
||||
|
||||
|
@ -2,7 +2,7 @@ from .constants import *
|
||||
import math
|
||||
import time
|
||||
|
||||
__version__ = '1.0.3'
|
||||
__version__ = '1.0.4'
|
||||
|
||||
class BME680(BME680Data):
|
||||
"""BOSCH BME680
|
||||
|
@ -39,7 +39,7 @@ classifiers = ['Development Status :: 5 - Production/Stable',
|
||||
|
||||
setup(
|
||||
name = 'bme680',
|
||||
version = '1.0.3',
|
||||
version = '1.0.4',
|
||||
author = 'Philip Howard',
|
||||
author_email = 'phil@pimoroni.com',
|
||||
description = """Python library for driving the Pimoroni BME680 Breakout""",
|
||||
|
@ -1,3 +1,10 @@
|
||||
bme680 (1.0.4) stable; urgency=low
|
||||
|
||||
* Fix to range_sw_err for extremely high gas readings
|
||||
* Convert to unsigned int to fix negative gas readings
|
||||
|
||||
-- Phil Howard <phil@pimoroni.com> Mon, 04 Dec 2017 00:00:00 +0000
|
||||
|
||||
bme680 (1.0.3) stable; urgency=low
|
||||
|
||||
* Merged temperature compensation fix from Bosch's BME680_driver 3.5.3
|
||||
|
@ -1,3 +1,10 @@
|
||||
bme680 (1.0.4) stable; urgency=low
|
||||
|
||||
* Fix to range_sw_err for extremely high gas readings
|
||||
* Convert to unsigned int to fix negative gas readings
|
||||
|
||||
-- Phil Howard <phil@pimoroni.com> Mon, 04 Dec 2017 00:00:00 +0000
|
||||
|
||||
bme680 (1.0.3) stable; urgency=low
|
||||
|
||||
* Merged temperature compensation fix from Bosch's BME680_driver 3.5.3
|
||||
|
Loading…
Reference in New Issue
Block a user