Skip to content

Commit

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

diff --git a/Changes b/Changes
index 5bfa2c5..5b3dae4 100644
--- a/Changes
+++ b/Changes
@@ -2,6 +2,16 @@ Revision history for Plerd

 {{$NEXT}}

+1.820 2019-12-26T04:03:53Z
+
+      - Adding SSL support to Plerdwatcher.
+
+      - Displayed webmentions are now sorted by time they were published (versus the time they were received).
+
+      - Adding a trivial default handler on the webmention listener.
+
+      - Plerd now emits an intentional warning on publication if the blog contains tags that are identical except for case.
+
 1.811 2019-05-27T04:24:16Z

       - Fixing a tag-ordering bug.
  • Loading branch information
jmacdotorg committed Dec 26, 2019
1 parent 9dffc59 commit 6c76bec
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 7 deletions.
10 changes: 10 additions & 0 deletions Changes
Expand Up @@ -2,6 +2,16 @@ Revision history for Plerd

{{$NEXT}}

1.820 2019-12-26T04:03:53Z

- Adding SSL support to Plerdwatcher.

- Displayed webmentions are now sorted by time they were published (versus the time they were received).

- Adding a trivial default handler on the webmention listener.

- Plerd now emits an intentional warning on publication if the blog contains tags that are identical except for case.

1.811 2019-05-27T04:24:16Z

- Fixing a tag-ordering bug.
Expand Down
13 changes: 9 additions & 4 deletions META.json
Expand Up @@ -4,7 +4,7 @@
"Jason McIntosh <jmac@jmac.org>"
],
"dynamic_config" : 0,
"generated_by" : "Minilla/v3.1.2, CPAN::Meta::Converter version 2.150005",
"generated_by" : "Minilla/v3.1.8, CPAN::Meta::Converter version 2.150005",
"license" : [
"mit"
],
Expand Down Expand Up @@ -35,7 +35,7 @@
"requires" : {
"Test::CPAN::Meta" : "0",
"Test::MinimumVersion::Fast" : "0.04",
"Test::PAUSE::Permissions" : "0.04",
"Test::PAUSE::Permissions" : "0.07",
"Test::Pod" : "1.41",
"Test::Spellunker" : "v0.2.7"
}
Expand All @@ -52,16 +52,20 @@
"FindBin" : "0",
"HTML::SocialMeta" : "0.72",
"HTML::Strip" : "0",
"JSON" : "0",
"LWP" : "0",
"List::Util" : "1.45",
"Mojolicious::Lite" : "0",
"Moose" : "0",
"MooseX::Types::URI" : "0",
"Path::Class" : "0",
"Readonly" : "0",
"Template" : "0",
"Test::Warn" : "0",
"Text::MultiMarkdown" : "0",
"Try::Tiny" : "0",
"URI" : "0",
"Web::Mention" : "0.6",
"Web::Mention" : "0.703",
"YAML" : "0"
}
}
Expand All @@ -78,12 +82,13 @@
"web" : "https://github.com/jmacdotorg/plerd"
}
},
"version" : "1.811",
"version" : "1.820",
"x_authority" : "cpan:JMAC",
"x_contributors" : [
"Christian Sánchez <sanchezchristian@gmail.com>",
"David Turner <novalis@novalis.org>",
"Joe Johnston <jjohn@taskboy.com>",
"Kivanc Yazan <kyzn@cpan.org>",
"Mohammad S Anwar <mohammad.anwar@yahoo.com>",
"Petter hassberg <dr.doddo@gmail.com>",
"Rebecca Turner <me@re-becca.org>"
Expand Down
8 changes: 6 additions & 2 deletions Makefile.PL
Expand Up @@ -11,7 +11,7 @@ use ExtUtils::MakeMaker 6.64;
my %WriteMakefileArgs = (
NAME => 'Plerd',
DISTNAME => 'Plerd',
VERSION => '1.811',
VERSION => '1.820',
EXE_FILES => [glob('script/*'), glob('bin/*')],
CONFIGURE_REQUIRES => {
"ExtUtils::MakeMaker" => "6.64"
Expand All @@ -32,16 +32,20 @@ my %WriteMakefileArgs = (
"FindBin" => 0,
"HTML::SocialMeta" => "0.72",
"HTML::Strip" => 0,
"JSON" => 0,
"LWP" => 0,
"List::Util" => "1.45",
"Mojolicious::Lite" => 0,
"Moose" => 0,
"MooseX::Types::URI" => 0,
"Path::Class" => 0,
"Readonly" => 0,
"Template" => 0,
"Test::Warn" => 0,
"Text::MultiMarkdown" => 0,
"Try::Tiny" => 0,
"URI" => 0,
"Web::Mention" => "0.6",
"Web::Mention" => "0.703",
"YAML" => 0
}
,
Expand Down
2 changes: 1 addition & 1 deletion lib/Plerd.pm
@@ -1,6 +1,6 @@
package Plerd;

our $VERSION = '1.812';
our $VERSION = '1.820';

use Moose;
use MooseX::Types::URI qw(Uri);
Expand Down

0 comments on commit 6c76bec

Please sign in to comment.