Skip to content

Commit fcbd9e2

Browse files
authored
increase version (#10)
1 parent 2bba2aa commit fcbd9e2

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
FROM alpine:3.23.2
22

33
LABEL maintainer="Michael Oberdorf <info@oberdorf-itc.de>"
4-
LABEL site.local.program.version="1.0.0"
4+
LABEL site.local.program.version="1.0.2"
55

66
ENV TZ="UTC" \
77
REQUESTS_CA_BUNDLE=/etc/ssl/certs/ca-certificates.crt \

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,8 @@ Container image: [DockerHub](https://hub.docker.com/r/oitc/weather2mqtt)
2626

2727
# Supported tags and respective `Dockerfile` links
2828

29-
* [`latest`, `1.0.0`](https://github.com/cybcon/docker.weather2mqtt/blob/v1.0.0/Dockerfile)
29+
* [`latest`, `1.0.2`](https://github.com/cybcon/docker.weather2mqtt/blob/v1.0.2/Dockerfile)
30+
* [`1.0.0`](https://github.com/cybcon/docker.weather2mqtt/blob/v1.0.0/Dockerfile)
3031

3132
# Summary
3233
The application will make an [Open Meteo](https://open-meteo.com/) free weather API call to get weather information for the configured geo coordinates.

src/app/bin/weather2mqtt.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
from lib.weather_codes import translate_weather_code
3131
from retry_requests import retry # seeAlso: https://pypi.org/project/retry-requests/
3232

33-
__version__ = "1.0.1"
33+
__version__ = "1.0.2"
3434
__script_path__ = os.path.dirname(__file__)
3535
__config_path__ = os.path.join(os.path.dirname(__script_path__), "etc")
3636
__local_tz__ = pytz.timezone("UTC")

0 commit comments

Comments
 (0)