Skip to content

Commit 288daed

Browse files
committed
Version 1.0.3 prep
1 parent c9d4cef commit 288daed

File tree

9 files changed

+32
-8
lines changed

9 files changed

+32
-8
lines changed

library/CHANGELOG.txt

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
11
1.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

86
1.0.2
97
-----

library/bme680/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
import math
33
import time
44

5-
__version__ = '1.0.2'
5+
__version__ = '1.0.3'
66

77
class BME680(BME680Data):
88
"""BOSCH BME680

library/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939

4040
setup(
4141
name = 'bme680',
42-
version = '1.0.2',
42+
version = '1.0.3',
4343
author = 'Philip Howard',
4444
author_email = '[email protected]',
4545
description = """Python library for driving the Pimoroni BME680 Breakout""",

packaging/CHANGELOG

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
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 <[email protected]> Wed, 22 Nov 2017 00:00:00 +0000
6+
17
bme680 (1.0.2) stable; urgency=low
28

39
* Fixed set_gas_heater_temperature to avoid i2c TypeError
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
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.

packaging/debian/changelog

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
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 <[email protected]> Wed, 22 Nov 2017 00:00:00 +0000
6+
17
bme680 (1.0.2) stable; urgency=low
28

39
* Fixed set_gas_heater_temperature to avoid i2c TypeError

packaging/makelog.sh

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff 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

4748
version=$(head -n 1 $pypilog)

packaging/test.txt

Whitespace-only changes.

packaging/testlog.sh

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
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

0 commit comments

Comments
 (0)