commit: 73fdac9b0921358b37d2cbfde2091950def8611e
parent 4216934fa569ac70f6d01ece945c1d303fb6b42d
Author: Haelwenn (lanodan) Monnier <contact@hacktivis.me>
Date: Mon, 4 Sep 2023 23:09:15 +0200
Version 0.1.4
Diffstat:
6 files changed, 7 insertions(+), 7 deletions(-)
diff --git a/Makefile.PL b/Makefile.PL
@@ -11,7 +11,7 @@ WriteMakefile(
ABSTRACT => 'CLI-based client / toolbox for ActivityPub Client-to-Server',
AUTHOR => 'Haelwenn (lanodan) Monnier <contact+ap-client@hacktivis.me>',
LICENSE => 'bsd',
- VERSION => 'v0.1.3',
+ VERSION => 'v0.1.4',
EXE_FILES =>
[ 'script/ap-fetch', 'script/ap-represent', 'script/ap-backup' ],
MAN1PODS => {
diff --git a/lib/App/ActivityPubClient.pm b/lib/App/ActivityPubClient.pm
@@ -3,7 +3,7 @@
# Copyright © 2020-2023 AP-Client Authors <https://hacktivis.me/git/ap-client/>
# SPDX-License-Identifier: BSD-3-Clause
package App::ActivityPubClient;
-our $VERSION = 'v0.1.3';
+our $VERSION = 'v0.1.4';
use strict;
use utf8;
use open ":std", ":encoding(UTF-8)";
diff --git a/script/ap-backup b/script/ap-backup
@@ -5,7 +5,7 @@
use strict;
use utf8;
use open ":std", ":encoding(UTF-8)";
-our $VERSION = 'v0.1.3';
+our $VERSION = 'v0.1.4';
use Getopt::Std;
$Getopt::Std::STANDARD_HELP_VERSION = 1;
diff --git a/script/ap-fetch b/script/ap-fetch
@@ -5,7 +5,7 @@
use strict;
use utf8;
use open ":std", ":encoding(UTF-8)";
-our $VERSION = 'v0.1.3';
+our $VERSION = 'v0.1.4';
use Getopt::Std;
use LWP::UserAgent;
@@ -91,7 +91,7 @@ if ($res->is_success) {
print "\n";
}
} else {
- print STDERR "Got $content_type instead of $content_match\n";
+ print STDERR "Got \"$content_type\" instead of \"$content_match\"\n";
exit 1;
}
} else {
diff --git a/script/ap-represent b/script/ap-represent
@@ -5,7 +5,7 @@
use strict;
use utf8;
use open ":std", ":encoding(UTF-8)";
-our $VERSION = 'v0.1.3';
+our $VERSION = 'v0.1.4';
use JSON;
use App::ActivityPubClient qw(print_object);
diff --git a/script/webfinger b/script/webfinger
@@ -4,7 +4,7 @@
# SPDX-License-Identifier: BSD-3-Clause
use strict;
use utf8;
-our $VERSION = 'v0.1.3';
+our $VERSION = 'v0.1.4';
use LWP::UserAgent;
use HTTP::Request::Common;