Skip to content

Commit d96c991

Browse files
committed
Update version number
1 parent 3a73ee6 commit d96c991

4 files changed

Lines changed: 18 additions & 5 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,12 @@ This extension can be easily installed using the weewx extensions installer.
1616

1717
1. Download the extension from github:
1818
```
19-
wget https://github.com/Bert-R/weewx-prometheus/archive/v1.5.0.tar.gz
19+
wget https://github.com/Bert-R/weewx-prometheus/archive/v1.6.0.tar.gz
2020
```
2121

2222
2. Install using the weewx extension utility
2323
```
24-
wee_extension --install v1.5.0.tar.gz
24+
wee_extension --install v1.6.0.tar.gz
2525
```
2626

2727
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.

bin/user/prompush.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,7 @@
215215

216216
}
217217

218-
__version__ = '1.1.0'
218+
__version__ = '1.6.0'
219219

220220
import weewx
221221
import weewx.restx

changelog

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,17 @@
22
initial release for submission to weewx extensions list
33
[1.1.0] - 2018-08-12
44
tom take it up where steve ulrich left off (thanks, steve!)
5-
5+
[1.2.0] - 2018-12-22
6+
Bert to build further on the work of Tom and Steve:
7+
* Corrected syntax error in original install script
8+
* Removed _f from temperature metrics, as the unit depends on the weewx configuration
9+
* Added missing metrics
10+
[1.3.0] - 2021-07-03
11+
Updated for Python 3
12+
[1.4.0] - 2021-07-09
13+
Included Ecowitt GW1000 / Froggit DP1500 measurements
14+
[1.5.0] - 2021-07-13
15+
Fixed crash on connection error and improved logging
16+
[1.6.0] - 2023-02-08
17+
* If no rain total, publish day rain as such
18+
* Define ET and windrun to prevent warnings

install.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"""
77

88
__title__ = 'PromPush'
9-
__version__ = '1.1.0'
9+
__version__ = '1.6.0'
1010
__author__ = 'Tom Mitchell <tom@tom.org>'
1111
__license__ = 'Apache License, Version 2.0'
1212

0 commit comments

Comments
 (0)