diff --git a/CHANGELOG b/CHANGELOG index 386810a..ca7d235 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,19 @@ +## 0.5.3 + +IMPROVEMENTS: + + * Add support for stdout emitter: https://github.com/myoung34/tilty/pull/23 + * Add Type annotations and basic mypy: https://github.com/myoung34/tilty/pull/22 + * Refactor logging and add 'logging_level' to [general] config section: https://github.com/myoung34/tilty/pull/21 + * Refactor to use dynamic loading and separate initialization from emit(): https://github.com/myoung34/tilty/pull/20 + +FIXES: + + * Fix initialization, add custom exceptions + * Fix poetry/makefile bootstrapping + * Fix bandit + + ## 0.5.2 IMPROVEMENTS: diff --git a/pyproject.toml b/pyproject.toml index 62b11ab..7ed9a7a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "Tilty" -version = "0.5.2" +version = "0.5.3" 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 8b6263d..ff6c6f5 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.5.2', + version='0.5.3', packages=find_packages(exclude=['tests*']), install_requires=[ 'Click',