Skip to content

Commit 9b18ecf

Browse files
committed
Fixed Manifest
1 parent 7f2dbdf commit 9b18ecf

7 files changed

Lines changed: 29 additions & 4 deletions

File tree

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# BME680
2+
3+
Python Library for the Bosch BME680 gas, temperature, pressure and humidity sensor.

library/CHANGELOG.txt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
1.0.1
2+
-----
3+
4+
* Added Manifest to Python package
5+
16
1.0.0
27
-----
38

library/MANIFEST.in

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
include CHANGELOG.txt
2+
include LICENSE.txt
3+
include README.txt
4+
include setup.py
5+
include bme680.py

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.0'
5+
__version__ = '1.0.1'
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.0',
42+
version = '1.0.1',
4343
author = 'Philip Howard',
4444
author_email = 'phil@pimoroni.com',
4545
description = """Python library for driving the Pimoroni BME680 Breakout""",

packaging/CHANGELOG

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
1+
bme680 (1.0.1) stable; urgency=low
2+
3+
* Added Manifest to Python package
4+
5+
-- Phil Howard <phil@pimoroni.com> Tue, 17 Oct 2017 00:00:00 +0000
6+
17
bme680 (1.0.0) stable; urgency=low
28

39
* Initial release
410

5-
-- Phil Howard <phil@pimoroni.com> Mon, 08 Sep 2014 00:00:00 +0000
11+
-- Phil Howard <phil@pimoroni.com> Tue, 17 Oct 2017 00:00:00 +0000

packaging/debian/changelog

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
1+
bme680 (1.0.1) stable; urgency=low
2+
3+
* Added Manifest to Python package
4+
5+
-- Phil Howard <phil@pimoroni.com> Tue, 17 Oct 2017 00:00:00 +0000
6+
17
bme680 (1.0.0) stable; urgency=low
28

39
* Initial release
410

5-
-- Phil Howard <phil@pimoroni.com> Mon, 08 Sep 2014 00:00:00 +0000
11+
-- Phil Howard <phil@pimoroni.com> Tue, 17 Oct 2017 00:00:00 +0000

0 commit comments

Comments
 (0)