diff --git a/CHANGELOG b/CHANGELOG index 8172be4..e2d4eb6 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,14 @@ +## 0.10.0 + +IMPROVEMENTS: + + * Add support for influx cloud via new influxdb client: + https://github.com/myoung34/tilty/pull/35 + +NOTES: + + * InfluxDB now supports only 1.8 and higher due to new influxdb client + ## 0.9.0 IMPROVEMENTS: diff --git a/pyproject.toml b/pyproject.toml index e22e740..d79bce7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "Tilty" -version = "0.9.0" +version = "0.10.0" description = "A pluggable system to receive and transmit bluetooth events from the Tilt Hydrometer" authors = ["Marcus Young <3vilpenguin@gmail.com>"] license = "MIT" diff --git a/setup.py b/setup.py index 87489d7..7f9cd80 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ long_description=long_description, long_description_content_type="text/markdown", py_modules=['tilty', 'blescan'], - version='0.9.0', + version='0.10.0', packages=find_packages(exclude=['tests*']), install_requires=[ 'Click',