Skip to content

Commit

Permalink
Increment to v0.16.
Browse files Browse the repository at this point in the history
  • Loading branch information
theory committed Jan 13, 2012
1 parent c30c33c commit 51129b0
Show file tree
Hide file tree
Showing 12 changed files with 13 additions and 11 deletions.
2 changes: 2 additions & 0 deletions Changes
@@ -1,5 +1,7 @@
Revision history for Perl extension Text-Markup.

0.16

0.15 2012-01-13T23:04:16Z
- Changed the parsers to return `undef` if no content was parsed from a
file.
Expand Down
2 changes: 1 addition & 1 deletion README.md
@@ -1,4 +1,4 @@
Text/Markup version 0.15
Text/Markup version 0.16
========================

This library's module, Text::Markup, provides an single interface for parsing
Expand Down
2 changes: 1 addition & 1 deletion lib/Text/Markup.pm
Expand Up @@ -5,7 +5,7 @@ use strict;
use Text::Markup::None;
use Carp;

our $VERSION = '0.15';
our $VERSION = '0.16';

my %_PARSER_FOR;
my %REGEX_FOR = (
Expand Down
2 changes: 1 addition & 1 deletion lib/Text/Markup/HTML.pm
Expand Up @@ -3,7 +3,7 @@ package Text::Markup::HTML;
use 5.8.1;
use strict;

our $VERSION = '0.15';
our $VERSION = '0.16';

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

our $VERSION = '0.15';
our $VERSION = '0.16';

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

our $VERSION = '0.15';
our $VERSION = '0.16';

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

our $VERSION = '0.15';
our $VERSION = '0.16';

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

our $VERSION = '0.15';
our $VERSION = '0.16';

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

our $VERSION = '0.15';
our $VERSION = '0.16';

sub parser {
my ($file, $encoding, $opts) = @_;
Expand Down
2 changes: 1 addition & 1 deletion lib/Text/Markup/Rest.pm
Expand Up @@ -5,7 +5,7 @@ use strict;
use File::Spec;
use constant WIN32 => $^O eq 'MSWin32';

our $VERSION = '0.15';
our $VERSION = '0.16';

# Find rst2html (process stolen from App::Info).
my $rst2html;
Expand Down
2 changes: 1 addition & 1 deletion lib/Text/Markup/Textile.pm
Expand Up @@ -5,7 +5,7 @@ use strict;
use File::BOM qw(open_bom);
use Text::Textile '2.10';

our $VERSION = '0.15';
our $VERSION = '0.16';

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

our $VERSION = '0.15';
our $VERSION = '0.16';

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

0 comments on commit 51129b0

Please sign in to comment.