From 7092e571d0b8223f8f902d98cb6fc2114b0ad5bd Mon Sep 17 00:00:00 2001 From: Marcus Young Date: Wed, 8 Jun 2022 19:17:33 -0500 Subject: [PATCH] Bump version 0.12.0 --- CHANGELOG | 10 ++++++++++ pyproject.toml | 2 +- setup.py | 2 +- 3 files changed, 12 insertions(+), 2 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index b11b0c7..a2258cd 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,13 @@ +## 0.12.0 + +IMPROVEMENTS: + + * Ignore deprecation in pylint for now + * fix import sort + * Fix new pylint warnings + * Bump pytest for python 3.10 compat + * Drop python 3.6, add python 3.10 + ## 0.11.1 SECURITY: diff --git a/pyproject.toml b/pyproject.toml index 539c076..c843a23 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "Tilty" -version = "0.11.1" +version = "0.12.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 a2006fd..20dd5af 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.11.1', + version='0.12.0', packages=find_packages(exclude=['tests*']), install_requires=[ 'click==7.1.2',