From 3e8e06ea108ee146459c2ee9c1ce30d657c00fea Mon Sep 17 00:00:00 2001 From: Jason Ertel Date: Wed, 31 Jan 2024 22:12:36 -0500 Subject: [PATCH] release 1.7.1 --- CHANGELOG.md | 15 +++++++++++++-- setup.py | 2 +- src/vuegraf/vuegraf.py | 4 ++-- 3 files changed, 16 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1d570a6..9847905 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,11 +4,22 @@ - TBD ## New features +- TBD + +## Other changes + +# 1.7.1 + +## Breaking changes +- None + +## New features +- None + +## Other changes - Added --debug arg to dump all points to console prior to sending to the database - @jertel - On startup the new detailedDataHousesEnabled and detailedDataSecondsEnabled values will be printed to console - @jertel - On startup the version will be printed to console - @jertel - -## Other changes - Fixed issue when hourly and historic data was collected it was discard the previous minute data - @jertel - Removed unused --quiet arg - @jertel - Removed unnecessary --version arg - @jertel diff --git a/setup.py b/setup.py index 7397864..fc24b2f 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ base_dir = os.path.dirname(__file__) setup( name='vuegraf', - version='1.7.0', + version='1.7.1', author='Jason Ertel', long_description=open('README.md').read(), long_description_content_type="text/markdown", diff --git a/src/vuegraf/vuegraf.py b/src/vuegraf/vuegraf.py index 268b3d0..a8f4d9d 100644 --- a/src/vuegraf/vuegraf.py +++ b/src/vuegraf/vuegraf.py @@ -3,8 +3,8 @@ __author__ = 'https://github.com/jertel' __license__ = 'MIT' __contributors__ = 'https://github.com/jertel/vuegraf/graphs/contributors' -__version__ = '1.7.0' -__versiondate__ = '2024/01/29' +__version__ = '1.7.1' +__versiondate__ = '2024/01/31' __maintainer__ = 'https://github.com/jertel' __github__ = 'https://github.com/jertel/vuegraf' __status__ = 'Production'