Skip to content

Commit

Permalink
Increment to v0.33
Browse files Browse the repository at this point in the history
  • Loading branch information
theory committed Feb 8, 2024
1 parent 0aaa354 commit d666284
Show file tree
Hide file tree
Showing 16 changed files with 17 additions and 15 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.33

0.32 2024-02-08T03:25:18Z
- Added the ability to change the regular expression for a format by
passing it in the `use` statement.
Expand Down
2 changes: 1 addition & 1 deletion lib/Text/Markup.pm
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ use Text::Markup;
use Text::Markup::None;
use Carp;

our $VERSION = '0.32';
our $VERSION = '0.33';

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 @@ -7,7 +7,7 @@ use Text::Markup;
use Text::Markup::Cmd;
use utf8;

our $VERSION = '0.32';
our $VERSION = '0.33';

sub import {
# Replace the regex if passed one.
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 @@ -7,7 +7,7 @@ use Text::Markup;
use Text::Markup::Cmd;
use utf8;

our $VERSION = '0.32';
our $VERSION = '0.33';

sub import {
# Replace Text::Markup::Asciidoc.
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 @@ -7,7 +7,7 @@ use Text::Markup;
use File::BOM qw(open_bom);
use Parse::BBCode;

our $VERSION = '0.32';
our $VERSION = '0.33';

sub import {
# Replace the regex if passed one.
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.32';
our $VERSION = '0.33';

sub import {
# Replace Text::Markup::Markdown.
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 @@ -7,7 +7,7 @@ use Text::Markup;
use File::BOM qw(open_bom);
use Text::WikiCreole;

our $VERSION = '0.32';
our $VERSION = '0.33';

sub import {
# Replace the regex if passed one.
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 @@ -5,7 +5,7 @@ use strict;
use warnings;
use Text::Markup;

our $VERSION = '0.32';
our $VERSION = '0.33';

sub import {
# Replace the regex if passed one.
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 @@ -7,7 +7,7 @@ use Text::Markup;
use File::BOM qw(open_bom);
use Text::Markdown ();

our $VERSION = '0.32';
our $VERSION = '0.33';

sub import {
# Replace the regex if passed one.
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 @@ -7,7 +7,7 @@ use Text::Markup;
use File::BOM qw(open_bom);
use Text::MediawikiFormat 1.0;

our $VERSION = '0.32';
our $VERSION = '0.33';

sub import {
# Replace the regex if passed one.
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 @@ -7,7 +7,7 @@ use Text::Markup;
use File::BOM qw(open_bom);
use Text::MultiMarkdown ();

our $VERSION = '0.32';
our $VERSION = '0.33';

sub import {
# Replace the regex if passed one.
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 @@ -7,7 +7,7 @@ use Text::Markup;
use HTML::Entities;
use File::BOM qw(open_bom);

our $VERSION = '0.32';
our $VERSION = '0.33';

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 @@ -14,7 +14,7 @@ sub import {
# Disable the use of HTML::Entities.
$Pod::Simple::XHTML::HAS_HTML_ENTITIES = 0;

our $VERSION = '0.32';
our $VERSION = '0.33';

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 @@ -7,7 +7,7 @@ use Text::Markup;
use Text::Markup::Cmd;
use File::Basename;

our $VERSION = '0.32';
our $VERSION = '0.33';

sub import {
# Replace the regex if passed one.
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 @@ -7,7 +7,7 @@ use Text::Markup;
use File::BOM qw(open_bom);
use Text::Textile 2.10;

our $VERSION = '0.32';
our $VERSION = '0.33';

sub import {
# Replace the regex if passed one.
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 @@ -7,7 +7,7 @@ use Text::Markup;
use File::BOM qw(open_bom);
use Text::Trac 0.10;

our $VERSION = '0.32';
our $VERSION = '0.33';

sub import {
# Replace the regex if passed one.
Expand Down

0 comments on commit d666284

Please sign in to comment.