55_DWD_OpenData: fix smartmatch warning (forum #118669)

git-svn-id: https://svn.fhem.de/fhem/trunk/fhem@23797 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
jensb 2021-02-21 19:49:57 +00:00
parent 03a4396bb9
commit 9c9391fe8b
2 changed files with 6 additions and 2 deletions

View File

@ -1,5 +1,6 @@
# Add changes at the top of the list. Keep it in ASCII, and 80-char wide.
# Do not insert empty lines here, update check depends on it.
- bugfix: 55_DWD_OpenData: no smartmatch warning (forum #118669)
- bugfix: 70_BOTVAC: commandref anker point style <module><get|set|attr>
- feature: 72_TA_CMI_JSON: added readOutputStates and according attributes
- feature: 73_km200: Errorcodes implemented

View File

@ -610,14 +610,14 @@ use Blocking;
use HttpUtils;
use feature qw(switch);
no if $] >= 5.010001, warnings => 'experimental::smartmatch';
no if $] >= 5.017011, warnings => 'experimental::smartmatch';
use constant UPDATE_DISTRICTS => -1;
use constant UPDATE_COMMUNEUNIONS => -2;
use constant UPDATE_ALL => -3;
require Exporter;
our $VERSION = '1.016002';
our $VERSION = '1.016003';
our @ISA = qw(Exporter);
our @EXPORT = qw(GetForecast GetAlerts UpdateAlerts UPDATE_DISTRICTS UPDATE_COMMUNEUNIONS UPDATE_ALL);
our @EXPORT_OK = qw(IsCommuneUnionWarncellId);
@ -2729,6 +2729,9 @@ sub DWD_OpenData_Initialize {
#
# CHANGES
#
# 16.02.2021 (version 1.16.3) jensb
# bugfix: fix version for experimental::smartmatch
#
# 03.12.2020 (version 1.16.2) jensb
# change: increased log level in sub RotateForecast
#