From 3368c7a52097ee150237c57ed1b5052819905985 Mon Sep 17 00:00:00 2001 From: "[Thomas Green]" Date: Thu, 6 Feb 2025 18:26:44 +0100 Subject: [PATCH] Fix export of methods - Method 'lib_version' was wrongly exported to 'ldns_version' - Method 'has_gost' was missing --- lib/Zonemaster/LDNS.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/Zonemaster/LDNS.pm b/lib/Zonemaster/LDNS.pm index 57d0901..b4fc3d8 100644 --- a/lib/Zonemaster/LDNS.pm +++ b/lib/Zonemaster/LDNS.pm @@ -5,7 +5,7 @@ use 5.014; our $VERSION = '4.1.0'; use parent 'Exporter'; -our @EXPORT_OK = qw[to_idn has_idn ldns_version load_zonefile]; +our @EXPORT_OK = qw[lib_version to_idn has_idn has_gost load_zonefile]; our %EXPORT_TAGS = ( all => \@EXPORT_OK ); require XSLoader; @@ -37,7 +37,7 @@ C represents a resolver, which is the part of the system respo =item lib_version() -Returns the ldns version string. Can be exported, but is not by default. +Returns the ldns version string. =item to_idn($name, ...)