-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Checking in changes prior to tagging of version 1.820.
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
1 parent
9dffc59
commit 6c76bec
Showing
4 changed files
with
26 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ | |
"Jason McIntosh <[email protected]>" | ||
], | ||
"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" | ||
], | ||
|
@@ -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" | ||
} | ||
|
@@ -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" | ||
} | ||
} | ||
|
@@ -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 <[email protected]>", | ||
"David Turner <[email protected]>", | ||
"Joe Johnston <[email protected]>", | ||
"Kivanc Yazan <[email protected]>", | ||
"Mohammad S Anwar <[email protected]>", | ||
"Petter hassberg <[email protected]>", | ||
"Rebecca Turner <[email protected]>" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
package Plerd; | ||
|
||
our $VERSION = '1.812'; | ||
our $VERSION = '1.820'; | ||
|
||
use Moose; | ||
use MooseX::Types::URI qw(Uri); | ||
|