File tree Expand file tree Collapse file tree 9 files changed +32
-8
lines changed
Expand file tree Collapse file tree 9 files changed +32
-8
lines changed Original file line number Diff line number Diff line change 111.0.3
22-----
33
4- * Merged fixes from Bosch BME680_driver version 3.5.3
5- * Replaced division with logical shift in compensation equations
6- * Fixed bug in temperature compensation of pressure
4+ * Merged temperature compensation fix from Bosch's BME680_driver 3.5.3
75
861.0.2
97-----
Original file line number Diff line number Diff line change 22import math
33import time
44
5- __version__ = '1.0.2 '
5+ __version__ = '1.0.3 '
66
77class BME680 (BME680Data ):
88 """BOSCH BME680
Original file line number Diff line number Diff line change 3939
4040setup (
4141 name = 'bme680' ,
42- version = '1.0.2 ' ,
42+ version = '1.0.3 ' ,
4343 author = 'Philip Howard' ,
4444 author_email = 'phil@pimoroni.com' ,
4545 description = """Python library for driving the Pimoroni BME680 Breakout""" ,
Original file line number Diff line number Diff line change 1+ bme680 (1.0.3) stable; urgency=low
2+
3+ * Merged temperature compensation fix from Bosch's BME680_driver 3.5.3
4+
5+ -- Phil Howard <phil@pimoroni.com> Wed, 22 Nov 2017 00:00:00 +0000
6+
17bme680 (1.0.2) stable; urgency=low
28
39 * Fixed set_gas_heater_temperature to avoid i2c TypeError
Original file line number Diff line number Diff line change 1+ Successfully uploaded bme680_1.0.2.dsc to build-master.raspberrypi.org for raspberrypi.
2+ Successfully uploaded bme680_1.0.2.tar.xz to build-master.raspberrypi.org for raspberrypi.
3+ Successfully uploaded python-bme680_1.0.2_all.deb to build-master.raspberrypi.org for raspberrypi.
4+ Successfully uploaded python3-bme680_1.0.2_all.deb to build-master.raspberrypi.org for raspberrypi.
5+ Successfully uploaded bme680_1.0.2_armhf.changes to build-master.raspberrypi.org for raspberrypi.
Original file line number Diff line number Diff line change 1+ bme680 (1.0.3) stable; urgency=low
2+
3+ * Merged temperature compensation fix from Bosch's BME680_driver 3.5.3
4+
5+ -- Phil Howard <phil@pimoroni.com> Wed, 22 Nov 2017 00:00:00 +0000
6+
17bme680 (1.0.2) stable; urgency=low
28
39 * Fixed set_gas_heater_temperature to avoid i2c TypeError
Original file line number Diff line number Diff line change @@ -39,9 +39,10 @@ inform "seeded debian changelog"
3939
4040# generate pypi changelog
4141
42- sed -e " /--/d" -e " s/ \*/\*/" \
43- -e " s/.*\([0-9].[0-9].[0-9]\).*/\1/" \
44- -e ' /[0-9].[0-9].[0-9]/ a\
42+ sed -e " /--/d" \
43+ -e " s/ \*/\*/" \
44+ -e " s/.*(\([0-9].[0-9].[0-9]\)).*/\1/" \
45+ -e ' /^[0-9].[0-9].[0-9]$/ a\
4546-----' $mainlog | cat -s > $pypilog
4647
4748version=$( head -n 1 $pypilog )
Original file line number Diff line number Diff line change 1+ #! /bin/bash
2+
3+
4+ sed -e " /--/d" \
5+ -e " s/ \*/\*/" \
6+ -e " s/.*(\([0-9].[0-9].[0-9]\)).*/\1/" \
7+ -e ' /^[0-9].[0-9].[0-9]$/ a\
8+ -----' CHANGELOG
You can’t perform that action at this time.
0 commit comments