diff --git a/CHANGELOG b/CHANGELOG index 3dca4ca..9d40605 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,5 +1,15 @@ ## 0.7.0 +IMPROVEMENTS: + + * Store webhook delays per tilt (by color or configurable key): https://github.com/myoung34/tilty/pull/32 + +BUG FIXES: + + * Better error handling, fix CPU maxing out a core: https://github.com/myoung34/tilty/pull/33 + +## 0.7.0 + IMPROVEMENTS: * Add prometheus emitter: https://github.com/myoung34/tilty/pull/29 diff --git a/pyproject.toml b/pyproject.toml index e9bb036..c9e2e48 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "Tilty" -version = "0.7.0" +version = "0.8.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 60418cb..21191ea 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.7.0', + version='0.8.0', packages=find_packages(exclude=['tests*']), install_requires=[ 'Click',