diff --git a/README.md b/README.md index 881ea79..5681ef9 100644 --- a/README.md +++ b/README.md @@ -16,12 +16,12 @@ This extension can be easily installed using the weewx extensions installer. 1. Download the extension from github: ``` - wget https://github.com/Bert-R/weewx-prometheus/archive/v1.5.0.tar.gz + wget https://github.com/Bert-R/weewx-prometheus/archive/v1.6.0.tar.gz ``` 2. Install using the weewx extension utility ``` - wee_extension --install v1.5.0.tar.gz + wee_extension --install v1.6.0.tar.gz ``` 3. Update **weewx.conf** to appropriately tag weather data for submission into the Prometheus pushgateway and subsequent scraping from Prometheus. Note that **job** and **instance** names may be subject to relabeling depending on your Prometheus environment. diff --git a/bin/user/prompush.py b/bin/user/prompush.py index 1ff7bda..c5fb927 100755 --- a/bin/user/prompush.py +++ b/bin/user/prompush.py @@ -215,7 +215,7 @@ } -__version__ = '1.1.0' +__version__ = '1.6.0' import weewx import weewx.restx diff --git a/changelog b/changelog index 19019a8..df3cb1a 100644 --- a/changelog +++ b/changelog @@ -2,4 +2,17 @@ initial release for submission to weewx extensions list [1.1.0] - 2018-08-12 tom take it up where steve ulrich left off (thanks, steve!) - \ No newline at end of file + [1.2.0] - 2018-12-22 + Bert to build further on the work of Tom and Steve: + * Corrected syntax error in original install script + * Removed _f from temperature metrics, as the unit depends on the weewx configuration + * Added missing metrics + [1.3.0] - 2021-07-03 + Updated for Python 3 + [1.4.0] - 2021-07-09 + Included Ecowitt GW1000 / Froggit DP1500 measurements + [1.5.0] - 2021-07-13 + Fixed crash on connection error and improved logging + [1.6.0] - 2023-02-08 + * If no rain total, publish day rain as such + * Define ET and windrun to prevent warnings diff --git a/install.py b/install.py index ae3115a..d0bf601 100755 --- a/install.py +++ b/install.py @@ -6,7 +6,7 @@ """ __title__ = 'PromPush' -__version__ = '1.1.0' +__version__ = '1.6.0' __author__ = 'Tom Mitchell ' __license__ = 'Apache License, Version 2.0'