Skip to content

Commit 4f17fe5

Browse files
committed
Prep for v0.0.2
1 parent ac26c1b commit 4f17fe5

File tree

5 files changed

+12
-13
lines changed

5 files changed

+12
-13
lines changed

CHANGELOG.txt

Lines changed: 0 additions & 10 deletions
This file was deleted.

Makefile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
LIBRARY_VERSION=$(shell cat library/setup.py | grep version | awk -F"'" '{print $$2}')
2-
LIBRARY_NAME=$(shell cat library/setup.py | grep name | awk -F"'" '{print $$2}')
2+
LIBRARY_NAME=bme280
3+
#$(shell cat library/setup.py | grep name | awk -F"'" '{print $$2}')
34

45
.PHONY: usage install uninstall
56
usage:

library/CHANGELOG.txt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
0.0.2
2+
-----
3+
4+
* Update to i2cdevice>=0.0.6 set/get API
5+
16
0.0.1
27
-----
38

library/bme280/__init__.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@
44
import struct
55
import time
66

7+
8+
__version__ = '0.0.2'
9+
710
CHIP_ID = 0x60
811
I2C_ADDRESS_GND = 0x76
912
I2C_ADDRESS_VCC = 0x77

library/setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939

4040
setup(
4141
name='pimoroni-bme280',
42-
version='0.0.1',
42+
version='0.0.3',
4343
author='Philip Howard',
4444
author_email='[email protected]',
4545
description="""Python library for the bme280 temperature, pressure and humidity sensor""",
@@ -50,5 +50,5 @@
5050
project_urls={'GitHub': 'https://www.github.com/pimoroni/bme680-python'},
5151
classifiers=classifiers,
5252
packages=['bme280'],
53-
install_requires=['i2cdevice>=0.0.4']
53+
install_requires=['i2cdevice>=0.0.6']
5454
)

0 commit comments

Comments
 (0)