Skip to content

Commit ec6df95

Browse files
committed
Checking in changes prior to tagging of version 1.2021.05.30.0.
Changelog diff is: diff --git a/Changes b/Changes index 2ce3027..94fe068 100644 --- a/Changes +++ b/Changes @@ -2,6 +2,14 @@ Revision history for Perl extension Whim {{$NEXT}} +1.2021.05.30.0 2021-05-31T02:00:17Z + + - Adding LWP::Protocol::https as a dependency. Thanks to Poorchop + for the patch. + + - Updating documentation to point at Libera Chat instead of + Freenode. + 1.2020.09.23.0 2020-09-23T20:31:51Z - The default summary template now uses emoji instead of tiny inline
1 parent f9ce815 commit ec6df95

File tree

4 files changed

+14
-3
lines changed

4 files changed

+14
-3
lines changed

Changes

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@ Revision history for Perl extension Whim
22

33
{{$NEXT}}
44

5+
1.2021.05.30.0 2021-05-31T02:00:17Z
6+
7+
- Adding LWP::Protocol::https as a dependency. Thanks to Poorchop
8+
for the patch.
9+
10+
- Updating documentation to point at Libera Chat instead of
11+
Freenode.
12+
513
1.2020.09.23.0 2020-09-23T20:31:51Z
614

715
- The default summary template now uses emoji instead of tiny inline

META.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@
5050
"DateTime::Format::ISO8601" : "0",
5151
"Digest::SHA" : "0",
5252
"FindBin" : "0",
53+
"LWP::Protocol::https" : "0",
5354
"LWP::UserAgent" : "0",
5455
"Mojolicious" : "0",
5556
"Moo" : "0",
@@ -81,10 +82,11 @@
8182
"web" : "https://github.com/jmacdotorg/whim"
8283
}
8384
},
84-
"version" : "1.2020.09.23.0",
85+
"version" : "1.2021.05.30.0",
8586
"x_authority" : "cpan:JMAC",
8687
"x_contributors" : [
8788
"Brian Wisti <[email protected]>",
89+
"Poorchop <[email protected]>",
8890
"Yanick Champoux <[email protected]>"
8991
],
9092
"x_serialization_backend" : "JSON::PP version 2.27300_01",

Makefile.PL

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ use ExtUtils::MakeMaker 6.64;
1111
my %WriteMakefileArgs = (
1212
NAME => 'Whim',
1313
DISTNAME => 'Whim',
14-
VERSION => '1.2020.09.23.0',
14+
VERSION => '1.2021.05.30.0',
1515
EXE_FILES => [glob('script/*'), glob('bin/*')],
1616
CONFIGURE_REQUIRES => {
1717
"ExtUtils::MakeMaker" => "6.64"
@@ -28,6 +28,7 @@ my %WriteMakefileArgs = (
2828
"DateTime::Format::ISO8601" => 0,
2929
"Digest::SHA" => 0,
3030
"FindBin" => 0,
31+
"LWP::Protocol::https" => 0,
3132
"LWP::UserAgent" => 0,
3233
"Mojolicious" => 0,
3334
"Moo" => 0,

lib/Whim.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ use Whim::Core;
88

99
use Path::Tiny;
1010

11-
our $VERSION = '1.2020.09.23.0';
11+
our $VERSION = '1.2021.05.30.0';
1212

1313
has info => "This is Whim, version $VERSION, by Jason McIntosh.";
1414

0 commit comments

Comments
 (0)