commit: 987c9ed3b9e1dfe01d8f21a665f5fc1c969518aa
parent 3178e719eda5065ea93415731df90a4ed17e36cc
Author: Haelwenn (lanodan) Monnier <contact@hacktivis.me>
Date: Tue, 4 Apr 2023 23:25:25 +0200
Version 0.1.3
Diffstat:
6 files changed, 6 insertions(+), 6 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.2',
+ VERSION => 'v0.1.3',
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.2';
+our $VERSION = 'v0.1.3';
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.2';
+our $VERSION = 'v0.1.3';
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.2';
+our $VERSION = 'v0.1.3';
use Getopt::Std;
use LWP::UserAgent;
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.2';
+our $VERSION = 'v0.1.3';
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.2';
+our $VERSION = 'v0.1.3';
use LWP::UserAgent;
use HTTP::Request::Common;