Skip to content

Commit

Permalink
Checking in changes prior to tagging of version 0.04.
Browse files Browse the repository at this point in the history
Changelog diff is:

diff --git a/Changes b/Changes
index 79c4b06..fade79f 100644
--- a/Changes
+++ b/Changes
@@ -2,6 +2,9 @@ Revision history for Perl extension Text::Markup::Any

 {{$NEXT}}

+0.04 2013-11-23T06:31:01Z
+        - follow up Text::Markdown::Hoedown 1.00
+
 0.03 2013-10-08T16:41:46Z
         - support Text::Markdown::Hoedown
  • Loading branch information
Songmu committed Nov 23, 2013
1 parent 46a2094 commit 62f4279
Show file tree
Hide file tree
Showing 5 changed files with 28 additions and 12 deletions.
3 changes: 3 additions & 0 deletions Changes
Expand Up @@ -2,6 +2,9 @@ Revision history for Perl extension Text::Markup::Any

{{$NEXT}}

0.04 2013-11-23T06:31:01Z
- follow up Text::Markdown::Hoedown 1.00

0.03 2013-10-08T16:41:46Z
- support Text::Markdown::Hoedown

Expand Down
27 changes: 19 additions & 8 deletions META.json
Expand Up @@ -4,7 +4,7 @@
"Masayuki Matsuki <y.songmu@gmail.com>"
],
"dynamic_config" : 0,
"generated_by" : "Minilla/v0.8.2, CPAN::Meta::Converter version 2.132510",
"generated_by" : "Minilla/v0.9.0, CPAN::Meta::Converter version 2.132510",
"license" : [
"perl_5"
],
Expand All @@ -26,22 +26,19 @@
]
},
"prereqs" : {
"build" : {
"requires" : {
"ExtUtils::MakeMaker" : "6.36"
}
},
"configure" : {
"requires" : {
"CPAN::Meta" : "0",
"CPAN::Meta::Prereqs" : "0",
"Module::Build" : "0.38"
"Module::Build" : "0.38",
"perl" : "5.008_001"
}
},
"develop" : {
"requires" : {
"Test::CPAN::Meta" : "0",
"Test::MinimumVersion" : "0.10108",
"Test::Perl::Critic" : "0",
"Test::Pod" : "1.41",
"Test::Spellunker" : "v0.2.7"
}
Expand All @@ -54,6 +51,17 @@
"Class::Load" : "0",
"Text::Markdown" : "0",
"parent" : "0"
},
"suggests" : {
"Text::Markdown::Discount" : "0",
"Text::MultiMarkdown" : "0",
"Text::Textile" : "0",
"Text::Xatena" : "0"
}
},
"test" : {
"requires" : {
"Test::More" : "0.98"
}
}
},
Expand All @@ -69,5 +77,8 @@
"web" : "https://github.com/Songmu/p5-Text-Markup-Any"
}
},
"version" : "0.03"
"version" : "0.04",
"x_contributors" : [
"Syohei YOSHIDA <syohex@gmail.com>"
]
}
6 changes: 4 additions & 2 deletions README.md
@@ -1,3 +1,4 @@
[![Build Status](https://travis-ci.org/Songmu/p5-Text-Markup-Any.png?branch=master)](https://travis-ci.org/Songmu/p5-Text-Markup-Any) [![Coverage Status](https://coveralls.io/repos/Songmu/p5-Text-Markup-Any/badge.png?branch=master)](https://coveralls.io/r/Songmu/p5-Text-Markup-Any?branch=master)
# NAME

Text::Markup::Any - Common Lightweight Markup Language Interface
Expand All @@ -17,8 +18,9 @@ Text::Markup::Any - Common Lightweight Markup Language Interface
# DESCRIPTION

Text::Markup::Any is Common Lightweight Markup Language Interface.
Currently supported modules are Text::Markdown, Text::MultiMarkdown,
Text::Markdown::Discount, Text::Xatena and Text::Textile.
Currently supported modules are [Text::Markdown](http://search.cpan.org/perldoc?Text::Markdown), [Text::MultiMarkdown](http://search.cpan.org/perldoc?Text::MultiMarkdown),
[Text::Markdown::Discount](http://search.cpan.org/perldoc?Text::Markdown::Discount), [Text::Markdown::GitHubAPI](http://search.cpan.org/perldoc?Text::Markdown::GitHubAPI),
[Text::Markdown::Hoedown](http://search.cpan.org/perldoc?Text::Markdown::Hoedown), [Text::Xatena](http://search.cpan.org/perldoc?Text::Xatena) and [Text::Textile](http://search.cpan.org/perldoc?Text::Textile).

# AUTHOR

Expand Down
2 changes: 1 addition & 1 deletion cpanfile
Expand Up @@ -6,7 +6,7 @@ recommends 'Text::Markdown::Hoedown', '1.00';

suggests 'Text::Markdown::Discount';
suggests 'Text::MultiMarkdown';
suggests 'Text:Textile';
suggests 'Text::Textile';
suggests 'Text::Xatena';

on configure => sub {
Expand Down
2 changes: 1 addition & 1 deletion lib/Text/Markup/Any.pm
Expand Up @@ -2,7 +2,7 @@ package Text::Markup::Any;
use strict;
use warnings;
use utf8;
our $VERSION = '0.03';
our $VERSION = '0.04';

use parent 'Exporter';
use Class::Load qw/load_class/;
Expand Down

0 comments on commit 62f4279

Please sign in to comment.