Skip to content

Commit 430c1d5

Browse files
committed
Prep for v1.1.0/1.1.1
1 parent 5f0839a commit 430c1d5

File tree

4 files changed

+26
-2
lines changed

4 files changed

+26
-2
lines changed

library/CHANGELOG.txt

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
1.1.1
2+
-----
3+
4+
* New: constants to clarify heater on/off states
5+
6+
1.1.0
7+
-----
8+
9+
* New: support for BME688 "high" gas resistance variant
10+
* New: set/get gas heater disable bit
11+
* Enhancement: fail with descriptive RuntimeError when chip is not detected
12+
113
1.0.5
214
-----
315

library/README.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,18 @@ In all cases you will have to enable the i2c bus.
5656
* Get help - http://forums.pimoroni.com/c/support
5757

5858
# Changelog
59+
1.1.1
60+
-----
61+
62+
* New: constants to clarify heater on/off states
63+
64+
1.1.0
65+
-----
66+
67+
* New: support for BME688 "high" gas resistance variant
68+
* New: set/get gas heater disable bit
69+
* Enhancement: fail with descriptive RuntimeError when chip is not detected
70+
5971
1.0.5
6072
-----
6173

library/bme680/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
import math
66
import time
77

8-
__version__ = '1.0.5'
8+
__version__ = '1.1.1'
99

1010

1111
# Export constants to global namespace

library/setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# -*- coding: utf-8 -*-
22
[metadata]
33
name = bme680
4-
version = 1.0.5
4+
version = 1.1.1
55
author = Philip Howard
66
author_email = [email protected]
77
description = Python library for the BME680 temperature, humidity and gas sensor

0 commit comments

Comments
 (0)