From 6e6cac09e1cb7a5ecdb04cd5b11296ee0f97f5f1 Mon Sep 17 00:00:00 2001 From: Andrew Johnson Date: Sun, 19 Oct 2025 16:25:36 -0400 Subject: [PATCH] Add module version numbers to Perl modules that might need them --- src/tools/EPICS/PodHtml.pm | 2 ++ src/tools/EPICS/PodMD.pm | 2 ++ src/tools/EPICS/PodXHtml.pm | 2 ++ 3 files changed, 6 insertions(+) diff --git a/src/tools/EPICS/PodHtml.pm b/src/tools/EPICS/PodHtml.pm index a02fc9cc9..ed586156d 100644 --- a/src/tools/EPICS/PodHtml.pm +++ b/src/tools/EPICS/PodHtml.pm @@ -5,6 +5,8 @@ use warnings; use base 'Pod::Simple::HTML'; +our $VERSION = '1.2.1'; + sub encode_entities { my ($self, $str) = @_; my %entities = ( diff --git a/src/tools/EPICS/PodMD.pm b/src/tools/EPICS/PodMD.pm index fb6a47ec3..eadf5fce6 100644 --- a/src/tools/EPICS/PodMD.pm +++ b/src/tools/EPICS/PodMD.pm @@ -7,6 +7,8 @@ use warnings; use base 'Pod::Markdown'; +our $VERSION = '1.1.1'; + # Translate L # into link text# # This is for Sphinx processing on Readthedocs. Sphinx converts diff --git a/src/tools/EPICS/PodXHtml.pm b/src/tools/EPICS/PodXHtml.pm index 3a5e64502..e5ee78e26 100644 --- a/src/tools/EPICS/PodXHtml.pm +++ b/src/tools/EPICS/PodXHtml.pm @@ -5,6 +5,8 @@ use warnings; use base 'Pod::Simple::XHTML'; +our $VERSION = '1.2.1'; + BEGIN { if ($Pod::Simple::XHTML::VERSION < '3.16') { # Add encode_entities() as a method