From d0fdb2c77328d0909ae4a4b3e7dea4958917f065 Mon Sep 17 00:00:00 2001 From: Ruslan Zakirov Date: Wed, 11 Sep 2013 15:07:09 +0400 Subject: [PATCH 1/5] skip MYMETA files from MANIFEST Manifest tests complaint otherwise and these files never should be shipped to CPAN. --- MANIFEST.SKIP | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MANIFEST.SKIP b/MANIFEST.SKIP index 2858133..332a26a 100644 --- a/MANIFEST.SKIP +++ b/MANIFEST.SKIP @@ -10,4 +10,4 @@ ^MakeMaker-\d \.gz$ \.cvsignore - +^MYMETA\. From 261d0598772d8617c24e0dba440b33efda2f6e8d Mon Sep 17 00:00:00 2001 From: Ruslan Zakirov Date: Wed, 11 Sep 2013 15:08:47 +0400 Subject: [PATCH 2/5] @Git should be after NextRelease Because of Git::Commit and it is documented in the plugin's docs. --- dist.ini | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/dist.ini b/dist.ini index eeda93b..8f0e56a 100644 --- a/dist.ini +++ b/dist.ini @@ -12,9 +12,6 @@ HTML::Mason = 0 Test::More = 0 Plack::Test = 0 -[@Git] -# push_to = all - [@Filter] bundle = @Basic @@ -39,3 +36,5 @@ bugtracker.web = http://github.com/abh/HTML-Mason-PSGIHandler/issues [NextRelease] format = %-5v %{MMMM d, yyyy}d +[@Git] +# push_to = all From cd4b1b481ad9245c3a975aa50e8b40fa155b5fd1 Mon Sep 17 00:00:00 2001 From: Ruslan Zakirov Date: Wed, 11 Sep 2013 15:10:56 +0400 Subject: [PATCH 3/5] replace dist::zilla's deprecated plugins --- dist.ini | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dist.ini b/dist.ini index 8f0e56a..6ddfd74 100644 --- a/dist.ini +++ b/dist.ini @@ -26,8 +26,8 @@ bugtracker.web = http://github.com/abh/HTML-Mason-PSGIHandler/issues [PkgVersion] [Signature] [CheckChangeLog] -[CompileTests] -[DistManifestTests] +[Test::Compile] +[Test::DistManifest] [HasVersionTests] [MetaTests] [NoTabsTests] From bdd528f2261a635613509aa09ad209e5450a67bf Mon Sep 17 00:00:00 2001 From: Ruslan Zakirov Date: Wed, 11 Sep 2013 15:12:54 +0400 Subject: [PATCH 4/5] replace dzil's BumpVersionFromGit with Get::NextVersion The former is deprecated --- dist.ini | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dist.ini b/dist.ini index 6ddfd74..7b61fae 100644 --- a/dist.ini +++ b/dist.ini @@ -22,7 +22,6 @@ bugtracker.web = http://github.com/abh/HTML-Mason-PSGIHandler/issues [Repository] [Homepage] -[BumpVersionFromGit] [PkgVersion] [Signature] [CheckChangeLog] @@ -38,3 +37,5 @@ format = %-5v %{MMMM d, yyyy}d [@Git] # push_to = all +[Git::NextVersion] +first_version = 0.01 From 403cb5069f4abd219db576449a0cd51f0ffc25ec Mon Sep 17 00:00:00 2001 From: Ruslan Zakirov Date: Wed, 11 Sep 2013 15:15:10 +0400 Subject: [PATCH 5/5] fix Changes file 0.52 release was never placed into Changes, copy date from CPAN. --- Changes | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Changes b/Changes index d1162e8..cdeae7d 100644 --- a/Changes +++ b/Changes @@ -1,9 +1,11 @@ Revision history for HTML-Mason-PSGIHandler {{$NEXT}} - - Add streaming handler, HTML::Mason::PSGIHandler::Streamy. (Chia-liang Kao) - Add new_psgi and as_psgi methods (Ricardo Signes) +0.52 October 22, 2010 + - Add streaming handler, HTML::Mason::PSGIHandler::Streamy. (Chia-liang Kao) + 0.51 October 18, 2010 - For body-less response, don't return an undef body element (Chia-liang Kao) - Pass Mason -Status into psgi_header (Shawn M Moore)