Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
Gadgetoid committed Sep 13, 2019
1 parent 717b000 commit e8fa1f2
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
5 changes: 5 additions & 0 deletions library/CHANGELOG.txt
@@ -1,3 +1,8 @@
0.0.2
-----

* Port to i2cdevice>=0.0.6 set/get API

0.0.1
-----

Expand Down
4 changes: 2 additions & 2 deletions library/setup.py
Expand Up @@ -39,7 +39,7 @@

setup(
name='veml6075',
version='0.0.1',
version='0.0.2',
author='Gee Bartlett',
author_email='gee@pimoroni.com',
description="""{{DESCRIPTION}}""",
Expand All @@ -50,5 +50,5 @@
project_urls={'GitHub': 'https://www.github.com/pimoroni/veml6075-python'},
classifiers=classifiers,
packages=['veml6075'],
install_requires=['i2cdevice']
install_requires=['i2cdevice>=0.0.6']
)
2 changes: 1 addition & 1 deletion library/veml6075/__init__.py
Expand Up @@ -2,7 +2,7 @@
from i2cdevice import Device, Register, BitField
from i2cdevice.adapter import Adapter, LookupAdapter, U16ByteSwapAdapter

__version__ = '0.0.1'
__version__ = '0.0.2'


class SensorDataAdapter(Adapter):
Expand Down

0 comments on commit e8fa1f2

Please sign in to comment.