Skip to content

Commit

Permalink
Version 1.0.3 prep
Browse files Browse the repository at this point in the history
  • Loading branch information
Gadgetoid committed Nov 23, 2017
1 parent c9d4cef commit 288daed
Show file tree
Hide file tree
Showing 9 changed files with 32 additions and 8 deletions.
4 changes: 1 addition & 3 deletions library/CHANGELOG.txt
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
1.0.3
-----

* Merged fixes from Bosch BME680_driver version 3.5.3
* Replaced division with logical shift in compensation equations
* Fixed bug in temperature compensation of pressure
* Merged temperature compensation fix from Bosch's BME680_driver 3.5.3

1.0.2
-----
Expand Down
2 changes: 1 addition & 1 deletion library/bme680/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import math
import time

__version__ = '1.0.2'
__version__ = '1.0.3'

class BME680(BME680Data):
"""BOSCH BME680
Expand Down
2 changes: 1 addition & 1 deletion library/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@

setup(
name = 'bme680',
version = '1.0.2',
version = '1.0.3',
author = 'Philip Howard',
author_email = '[email protected]',
description = """Python library for driving the Pimoroni BME680 Breakout""",
Expand Down
6 changes: 6 additions & 0 deletions packaging/CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
bme680 (1.0.3) stable; urgency=low

* Merged temperature compensation fix from Bosch's BME680_driver 3.5.3

-- Phil Howard <[email protected]> Wed, 22 Nov 2017 00:00:00 +0000

bme680 (1.0.2) stable; urgency=low

* Fixed set_gas_heater_temperature to avoid i2c TypeError
Expand Down
5 changes: 5 additions & 0 deletions packaging/bme680_1.0.2_armhf.raspberrypi.upload
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
Successfully uploaded bme680_1.0.2.dsc to build-master.raspberrypi.org for raspberrypi.
Successfully uploaded bme680_1.0.2.tar.xz to build-master.raspberrypi.org for raspberrypi.
Successfully uploaded python-bme680_1.0.2_all.deb to build-master.raspberrypi.org for raspberrypi.
Successfully uploaded python3-bme680_1.0.2_all.deb to build-master.raspberrypi.org for raspberrypi.
Successfully uploaded bme680_1.0.2_armhf.changes to build-master.raspberrypi.org for raspberrypi.
6 changes: 6 additions & 0 deletions packaging/debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
bme680 (1.0.3) stable; urgency=low

* Merged temperature compensation fix from Bosch's BME680_driver 3.5.3

-- Phil Howard <[email protected]> Wed, 22 Nov 2017 00:00:00 +0000

bme680 (1.0.2) stable; urgency=low

* Fixed set_gas_heater_temperature to avoid i2c TypeError
Expand Down
7 changes: 4 additions & 3 deletions packaging/makelog.sh
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,10 @@ inform "seeded debian changelog"

# generate pypi changelog

sed -e "/--/d" -e "s/ \*/\*/" \
-e "s/.*\([0-9].[0-9].[0-9]\).*/\1/" \
-e '/[0-9].[0-9].[0-9]/ a\
sed -e "/--/d" \
-e "s/ \*/\*/" \
-e "s/.*(\([0-9].[0-9].[0-9]\)).*/\1/" \
-e '/^[0-9].[0-9].[0-9]$/ a\
-----' $mainlog | cat -s > $pypilog

version=$(head -n 1 $pypilog)
Expand Down
Empty file added packaging/test.txt
Empty file.
8 changes: 8 additions & 0 deletions packaging/testlog.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
#!/bin/bash


sed -e "/--/d" \
-e "s/ \*/\*/" \
-e "s/.*(\([0-9].[0-9].[0-9]\)).*/\1/" \
-e '/^[0-9].[0-9].[0-9]$/ a\
-----' CHANGELOG

0 comments on commit 288daed

Please sign in to comment.