diff --git a/CHANGELOG.md b/CHANGELOG.md index fd9d660..ff0c0f9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,17 @@ ## Breaking changes - TBD +## New features +- TBD + +## Other changes +- TBD + +# 1.7.0 + +## Breaking changes +- None + ## New features - Added `detailedDataSecondsEnabled` and `detailedDataHoursEnabled` to selectively fetch one or (or both) seconds- and hours- resolution data iff `detailedDataEnabled` = `true` - Added `timezone` config to allow configuring the timezone according to which end-of-day is calculated. diff --git a/setup.py b/setup.py index c8ae319..0161f26 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ base_dir = os.path.dirname(__file__) setup( name='vuegraf', - version='1.6.1', + version='1.7.0', author='Jason Ertel', url='https://github.com/jertel/vuegraf', description='Populate metrics from your Emporia Vue energy monitoring devices into an InfluxDB', diff --git a/src/vuegraf/vuegraf.py b/src/vuegraf/vuegraf.py index ab90f54..8e4b8c1 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.6.1' -__versiondate__ = '2023/12/29' +__version__ = '1.7.0' +__versiondate__ = '2024/01/29' __maintainer__ = 'https://github.com/jertel' __github__ = 'https://github.com/jertel/vuegraf' __status__ = 'Production'