diff --git a/CHANGES b/CHANGES
index 6e9e9e4..e69de29 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,48 +0,0 @@
-==============================
-9999-99-99 99:99:99 +0000 HEAD
-==============================
-
-  commit 29a14156a0c45806728dce6d724ef4f8b5e0d0d7
-  Author: Rocco Caputo <rcaputo@cpan.org>
-  Date:   Thu Feb 4 12:30:26 2021 -0500
-  
-    Bump the version for release.
-
-  commit 0dd7d80c19efee664f5b92f9d01b9d4da2c0c351
-  Author: Rocco Caputo <rcaputo@cpan.org>
-  Date:   Thu Feb 4 12:26:36 2021 -0500
-  
-    Don't check can_open_socket() if the caller provides their own
-    socket.
-
-  commit 7b6b7e26c0004e269c72e4686c06925362181ac8
-  Merge: 1341bd5 7969589
-  Author: Rocco Caputo <rcaputo@cpan.org>
-  Date:   Thu Jan 14 15:26:44 2021 -0500
-  
-    Merge branch 'master' of github.com:rcaputo/poe-component-client-ping
-
-  commit 1341bd55635d4a93d1e0bca3d99adfbd92b52563
-  Author: Rocco Caputo <rcaputo@cpan.org>
-  Date:   Thu Jan 14 15:24:49 2021 -0500
-  
-    Don't assume non-root users can't open raw sockets. Check instead.
-
-  commit 796958908a9734ffd6763763344e27ec041d59cf
-  Merge: 7c36f0b 908304f
-  Author: Rocco Caputo <rcaputo@cpan.org>
-  Date:   Thu Jan 14 15:23:46 2021 -0500
-  
-    Merge pull request #4 from jmaslak/debug-pretty
-
-    Don't output raw bytes during debugging
-
-  commit 908304f93388c17ad6243a48f5ca5ccc2861d7cd
-  Author: Joel Maslak <jmaslak@antelope.net>
-  Date:   Fri Sep 30 15:34:17 2016 -0600
-  
-    Don't output raw bytes during debugging 
-
-==============
-End of Excerpt
-==============
diff --git a/META.json b/META.json
index 6ca407b..42ae64f 100644
--- a/META.json
+++ b/META.json
@@ -4,13 +4,13 @@
       "Rocco Caputo <rcaputo@cpan.org>"
    ],
    "dynamic_config" : 1,
-   "generated_by" : "ExtUtils::MakeMaker version 7.24, CPAN::Meta::Converter version 2.150010",
+   "generated_by" : "ExtUtils::MakeMaker version 7.62, CPAN::Meta::Converter version 2.150010",
    "license" : [
       "perl_5"
    ],
    "meta-spec" : {
       "url" : "http://search.cpan.org/perldoc?CPAN::Meta::Spec",
-      "version" : "2"
+      "version" : 2
    },
    "name" : "POE-Component-Client-Ping",
    "no_index" : {
@@ -46,6 +46,6 @@
          "url" : "http://github.com/rcaputo/poe-component-client-ping/"
       }
    },
-   "version" : "1.177",
-   "x_serialization_backend" : "JSON::PP version 2.27400_02"
+   "version" : "1.176",
+   "x_serialization_backend" : "JSON::PP version 4.06"
 }
diff --git a/META.yml b/META.yml
index ac990df..7db2cf5 100644
--- a/META.yml
+++ b/META.yml
@@ -7,7 +7,7 @@ build_requires:
 configure_requires:
   ExtUtils::MakeMaker: '0'
 dynamic_config: 1
-generated_by: 'ExtUtils::MakeMaker version 7.24, CPAN::Meta::Converter version 2.150010'
+generated_by: 'ExtUtils::MakeMaker version 7.62, CPAN::Meta::Converter version 2.150010'
 license: perl
 meta-spec:
   url: http://module-build.sourceforge.net/META-spec-v1.4.html
@@ -23,5 +23,5 @@ requires:
 resources:
   license: http://dev.perl.org/licenses/
   repository: http://github.com/rcaputo/poe-component-client-ping/
-version: '1.177'
+version: '1.176'
 x_serialization_backend: 'CPAN::Meta::YAML version 0.018'
diff --git a/debian/changelog b/debian/changelog
index 40f3954..6d9539b 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+libpoe-component-client-ping-perl (1.177+git20210204.2.0dd7d80+ds-1) UNRELEASED; urgency=low
+
+  * New upstream snapshot.
+  * New upstream snapshot.
+
+ -- Debian Janitor <janitor@jelmer.uk>  Thu, 21 Jul 2022 18:33:53 -0000
+
 libpoe-component-client-ping-perl (1.177-1) unstable; urgency=medium
 
   * Import upstream version 1.177.
diff --git a/lib/POE/Component/Client/Ping.pm b/lib/POE/Component/Client/Ping.pm
index 002828e..289f6d4 100644
--- a/lib/POE/Component/Client/Ping.pm
+++ b/lib/POE/Component/Client/Ping.pm
@@ -24,7 +24,7 @@ use vars qw(@ISA @EXPORT_OK %EXPORT_TAGS);
 );
 
 use vars qw($VERSION $PKTSIZE);
-$VERSION = '1.177';
+$VERSION = '1.176';
 $PKTSIZE = $^O eq 'linux' ? 3_000 : 100;
 
 use Carp qw(croak);