diff options
author | Frédéric Buclin <LpSolit@gmail.com> | 2016-02-29 19:34:34 +0100 |
---|---|---|
committer | Frédéric Buclin <LpSolit@gmail.com> | 2016-02-29 19:34:34 +0100 |
commit | 86fb87f1a65a17e7a86fe71b06d57767b0b3ea3b (patch) | |
tree | 85acb4dc08ab6ff6247c2aafca88ac7bb3acd2e0 /docs | |
parent | 438d57d65626d068ca0f28de46410ebecc9a9b57 (diff) | |
download | bugzilla-86fb87f1a65a17e7a86fe71b06d57767b0b3ea3b.tar.gz bugzilla-86fb87f1a65a17e7a86fe71b06d57767b0b3ea3b.tar.xz |
Bug 1136137: Require Perl 5.14
r=dkl
Diffstat (limited to 'docs')
-rw-r--r-- | docs/en/rst/conf.py | 4 | ||||
-rw-r--r-- | docs/lib/Pod/Simple/HTML/Bugzilla.pm | 2 | ||||
-rw-r--r-- | docs/lib/Pod/Simple/HTMLBatch/Bugzilla.pm | 2 | ||||
-rwxr-xr-x | docs/makedocs.pl | 2 |
4 files changed, 5 insertions, 5 deletions
diff --git a/docs/en/rst/conf.py b/docs/en/rst/conf.py index d2cf20ba4..10d18cadb 100644 --- a/docs/en/rst/conf.py +++ b/docs/en/rst/conf.py @@ -46,7 +46,7 @@ master_doc = 'index' # General information about the project. project = u'Bugzilla' -copyright = u'2014, The Bugzilla Team' +copyright = u'2016, The Bugzilla Team' # The version info for the project you're documenting, acts as replacement for # |version| and |release|, also used in various other places throughout the @@ -115,7 +115,7 @@ rst_prolog = """ .. role:: field :class: field -.. |min-perl-ver| replace:: 5.10.1 +.. |min-perl-ver| replace:: 5.14.0 """ rst_epilog = """ diff --git a/docs/lib/Pod/Simple/HTML/Bugzilla.pm b/docs/lib/Pod/Simple/HTML/Bugzilla.pm index ffbd0775c..047a27bc7 100644 --- a/docs/lib/Pod/Simple/HTML/Bugzilla.pm +++ b/docs/lib/Pod/Simple/HTML/Bugzilla.pm @@ -7,7 +7,7 @@ package Pod::Simple::HTML::Bugzilla; -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/docs/lib/Pod/Simple/HTMLBatch/Bugzilla.pm b/docs/lib/Pod/Simple/HTMLBatch/Bugzilla.pm index cb61082df..a4747eef0 100644 --- a/docs/lib/Pod/Simple/HTMLBatch/Bugzilla.pm +++ b/docs/lib/Pod/Simple/HTMLBatch/Bugzilla.pm @@ -7,7 +7,7 @@ package Pod::Simple::HTMLBatch::Bugzilla; -use 5.10.1; +use 5.14.0; use strict; use warnings; diff --git a/docs/makedocs.pl b/docs/makedocs.pl index 6baf9a797..81d098a94 100755 --- a/docs/makedocs.pl +++ b/docs/makedocs.pl @@ -23,7 +23,7 @@ # All these TeX packages together are close to a gig :-| But after you've # installed them, you can remove texlive-latex-extra-doc to save 400MB. -use 5.10.1; +use 5.14.0; use strict; use warnings; |