Skip to content

Commit

Permalink
Increment to v0.32
Browse files Browse the repository at this point in the history
  • Loading branch information
theory committed Sep 10, 2023
1 parent 21ab19b commit 584ddd5
Show file tree
Hide file tree
Showing 17 changed files with 18 additions and 16 deletions.
2 changes: 2 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
Revision history for Perl extension Text-Markup.

0.32

0.31 2023-09-10T23:24:43Z
- Fixed the passing of parameters to `parse()`.
- Documented the parameters passable to `parse()` for each parser.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Text/Markup version 0.31
Text/Markup version 0.32
========================

[![CPAN version](https://badge.fury.io/pl/Text-Markup.svg)](https://badge.fury.io/pl/Text-Markup)
Expand Down
2 changes: 1 addition & 1 deletion lib/Text/Markup.pm
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ use warnings;
use Text::Markup::None;
use Carp;

our $VERSION = '0.31';
our $VERSION = '0.32';

my %_PARSER_FOR;
my %REGEX_FOR = (
Expand Down
2 changes: 1 addition & 1 deletion lib/Text/Markup/Asciidoc.pm
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ use warnings;
use Text::Markup::Cmd;
use utf8;

our $VERSION = '0.31';
our $VERSION = '0.32';

my $ASCIIDOC = find_cmd([
(map { (WIN32 ? ("$_.exe", "$_.bat") : ($_)) } qw(asciidoc)),
Expand Down
2 changes: 1 addition & 1 deletion lib/Text/Markup/Asciidoctor.pm
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ use warnings;
use Text::Markup::Cmd;
use utf8;

our $VERSION = '0.31';
our $VERSION = '0.32';

# Replace Text::Markup::Asciidoc.
Text::Markup->register( asciidoc => qr{a(?:sc(?:iidoc)?|doc)?} );
Expand Down
2 changes: 1 addition & 1 deletion lib/Text/Markup/Bbcode.pm
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ use warnings;
use File::BOM qw(open_bom);
use Parse::BBCode;

our $VERSION = '0.31';
our $VERSION = '0.32';

sub parser {
my ($file, $encoding, $opts) = @_;
Expand Down
2 changes: 1 addition & 1 deletion lib/Text/Markup/CommonMark.pm
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ use CommonMark;
use Text::Markup;
use File::BOM qw(open_bom);

our $VERSION = '0.31';
our $VERSION = '0.32';

# Replace Text::Markup::Markdown.
Text::Markup->register( markdown => qr{m(?:d(?:own)?|kdn?|arkdown)} );
Expand Down
2 changes: 1 addition & 1 deletion lib/Text/Markup/Creole.pm
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ use warnings;
use File::BOM qw(open_bom);
use Text::WikiCreole;

our $VERSION = '0.31';
our $VERSION = '0.32';

sub parser {
my ($file, $encoding, $opts) = @_;
Expand Down
2 changes: 1 addition & 1 deletion lib/Text/Markup/HTML.pm
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ use 5.8.1;
use strict;
use warnings;

our $VERSION = '0.31';
our $VERSION = '0.32';

sub parser {
my ($file, $encoding, $opts) = @_;
Expand Down
2 changes: 1 addition & 1 deletion lib/Text/Markup/Markdown.pm
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ use warnings;
use File::BOM qw(open_bom);
use Text::Markdown ();

our $VERSION = '0.31';
our $VERSION = '0.32';

sub parser {
my ($file, $encoding, $opts) = @_;
Expand Down
2 changes: 1 addition & 1 deletion lib/Text/Markup/Mediawiki.pm
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ use warnings;
use File::BOM qw(open_bom);
use Text::MediawikiFormat 1.0;

our $VERSION = '0.31';
our $VERSION = '0.32';

sub parser {
my ($file, $encoding, $opts) = @_;
Expand Down
2 changes: 1 addition & 1 deletion lib/Text/Markup/Multimarkdown.pm
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ use warnings;
use File::BOM qw(open_bom);
use Text::MultiMarkdown ();

our $VERSION = '0.31';
our $VERSION = '0.32';

sub parser {
my ($file, $encoding, $opts) = @_;
Expand Down
2 changes: 1 addition & 1 deletion lib/Text/Markup/None.pm
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ use warnings;
use HTML::Entities;
use File::BOM qw(open_bom);

our $VERSION = '0.31';
our $VERSION = '0.32';

sub parser {
my ($file, $encoding, $opts) = @_;
Expand Down
2 changes: 1 addition & 1 deletion lib/Text/Markup/Pod.pm
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ use Pod::Simple::XHTML 3.15;
# Disable the use of HTML::Entities.
$Pod::Simple::XHTML::HAS_HTML_ENTITIES = 0;

our $VERSION = '0.31';
our $VERSION = '0.32';

sub parser {
my ($file, $encoding, $opts) = @_;
Expand Down
2 changes: 1 addition & 1 deletion lib/Text/Markup/Rest.pm
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ use warnings;
use Text::Markup::Cmd;
use File::Basename;

our $VERSION = '0.31';
our $VERSION = '0.32';

# Find Python or die.
my $PYTHON = find_cmd(
Expand Down
2 changes: 1 addition & 1 deletion lib/Text/Markup/Textile.pm
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ use warnings;
use File::BOM qw(open_bom);
use Text::Textile 2.10;

our $VERSION = '0.31';
our $VERSION = '0.32';

sub parser {
my ($file, $encoding, $opts) = @_;
Expand Down
2 changes: 1 addition & 1 deletion lib/Text/Markup/Trac.pm
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ use warnings;
use File::BOM qw(open_bom);
use Text::Trac 0.10;

our $VERSION = '0.31';
our $VERSION = '0.32';

sub parser {
my ($file, $encoding, $opts) = @_;
Expand Down

0 comments on commit 584ddd5

Please sign in to comment.