diff --git a/fhem/CHANGED b/fhem/CHANGED index a3d0e8cc3..c6ee25003 100644 --- a/fhem/CHANGED +++ b/fhem/CHANGED @@ -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 - feature: 72_TA_CMI_JSON: added readOutputStates and according attributes - feature: 73_km200: Errorcodes implemented diff --git a/fhem/FHEM/55_DWD_OpenData.pm b/fhem/FHEM/55_DWD_OpenData.pm index 5afd40100..72ba91ab3 100644 --- a/fhem/FHEM/55_DWD_OpenData.pm +++ b/fhem/FHEM/55_DWD_OpenData.pm @@ -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 #