Skip to content

Commit b507c82

Browse files
committed
Fix more version requirements
Following the example from 03261c9.
1 parent a33f22b commit b507c82

File tree

5 files changed

+11
-11
lines changed

5 files changed

+11
-11
lines changed

Changes

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
Revision history for Perl extension Text-Markup.
22

33
0.25
4-
- Fixed the importation of Pod::Simple::XHTML and Text::Trac to use the
5-
correct syntax for requiring a minimum version. Thanks to Graham Knop
6-
for the PR (#27)!
4+
- Fixed the importation of Pod::Simple::XHTML, Text::Trac, Text::Textile,
5+
and Text::MediawikiFormat to use the correct syntax for requiring a
6+
minimum version. Thanks to Graham Knop for the PR (#27)!
77
- Fixed a reStructuredText test failure on newer versions of `docutils`.
88
- Moved development test dependencies from recommended prereqs to
99
development prereqs.

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,23 +2,23 @@ Text/Markup version 0.25
22
========================
33

44
[![CPAN version](https://badge.fury.io/pl/Text-Markup.svg)](https://badge.fury.io/pl/Text-Markup)
5-
[![Build Status](https://travis-ci.org/theory/text-markup.svg)](https://travis-ci.org/theory/text-markup)
5+
[![Build Status](https://github.com/theory/text-markup/workflows/CI/badge.svg)](https://github.com/theory/text-markup/actions/)
66

77
This library's module, Text::Markup, provides an single interface for parsing
88
a large number of text markup formats and converting them to HTML. It
99
currently supports the following markups:
1010

1111
* [Asciidoc](https://asciidoc-py.github.io)
12+
* [BBcode](https://www.bbcode.org)
13+
* [Creole](https://www.wikicreole.org)
1214
* [HTML](https://whatwg.org/html)
1315
* [Markdown](https://daringfireball.net/projects/markdown/)
14-
* [MultiMarkdown](https://fletcherpenney.net/multimarkdown/)
1516
* [MediaWiki](https://en.wikipedia.org/wiki/Help:Contents/Editing_Wikipedia)
17+
* [MultiMarkdown](https://fletcherpenney.net/multimarkdown/)
1618
* [Pod](https://metacpan.org/dist/perl/view/pod/perlpodspec.pod)
1719
* [reStructuredText](https://docutils.sourceforge.io/rst.html)
1820
* [Textile](https://textile-lang.com)
1921
* [Trac](https://trac.edgewall.org/wiki/WikiFormatting)
20-
* [BBcode](https://www.bbcode.org)
21-
* [Creole](https://www.wikicreole.org)
2222

2323
Installation
2424
------------

lib/Text/Markup.pm

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -133,10 +133,10 @@ This distribution includes support for a number of markup formats:
133133
134134
=item * L<Markdown|https://daringfireball.net/projects/markdown/>
135135
136-
=item * L<MultiMarkdown|https://fletcherpenney.net/multimarkdown/>
137-
138136
=item * L<MediaWiki|https://en.wikipedia.org/wiki/Help:Contents/Editing_Wikipedia>
139137
138+
=item * L<MultiMarkdown|https://fletcherpenney.net/multimarkdown/>
139+
140140
=item * L<Pod|perlpod>
141141
142142
=item * L<reStructuredText|https://docutils.sourceforge.io/rst.html>

lib/Text/Markup/Mediawiki.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ use 5.8.1;
44
use strict;
55
use warnings;
66
use File::BOM qw(open_bom);
7-
use Text::MediawikiFormat '1.0';
7+
use Text::MediawikiFormat 1.0;
88

99
our $VERSION = '0.25';
1010

lib/Text/Markup/Textile.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ use 5.8.1;
44
use strict;
55
use warnings;
66
use File::BOM qw(open_bom);
7-
use Text::Textile '2.10';
7+
use Text::Textile 2.10;
88

99
our $VERSION = '0.25';
1010

0 commit comments

Comments
 (0)