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.
diff --git a/META.json b/META.json
index ac87150..df7344b 100644
--- a/META.json
+++ b/META.json
@@ -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"
    ],
@@ -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 <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>"
diff --git a/Makefile.PL b/Makefile.PL
index e3d09f6..5d717df 100644
--- a/Makefile.PL
+++ b/Makefile.PL
@@ -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"
@@ -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
 }
 ,
diff --git a/lib/Plerd.pm b/lib/Plerd.pm
index 5abdc8f..b2b2181 100644
--- a/lib/Plerd.pm
+++ b/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);