Explorar o código

Merge branch 'main' of github.com:teodesian/playwright-perl

George S. Baugh %!s(int64=4) %!d(string=hai) anos
pai
achega
adf1a27f11
Modificáronse 5 ficheiros con 13 adicións e 5 borrados
  1. 6 2
      Changes
  2. 1 3
      dist.ini
  3. 2 0
      lib/Playwright.pm
  4. 2 0
      lib/Playwright/Base.pm
  5. 2 0
      lib/Playwright/Util.pm

+ 6 - 2
Changes

@@ -1,4 +1,8 @@
 Revision history for Playwright
 
-0.001   10-20-2020
-        - First version, released on an unsuspecting world.
+0.002 2021-02-10 TEODESIAN
+    [BUG FIXES]
+    - Declare perl 5.28 to be minimum version
+
+0.001 2020-11-02 TEODESIAN
+    - First release to CPAN

+ 1 - 3
dist.ini

@@ -1,5 +1,5 @@
 name = Playwright
-version = 0.001
+version = 0.002
 author = George S. Baugh <george@troglodyne.net>
 license = MIT
 copyright_holder = Troglodyne LLC
@@ -40,8 +40,6 @@ finder=NoBin
 ; Unfortunately the Manifest test does not work for unknown reasons.
 [@TestingMania]
 critic_config = perlcriticrc
-disable = Test::CPAN::Changes
-disable = Test::DistManifest
 disable = Test::Compile
 disable = PodCoverageTests
 disable = Test::Synopsis

+ 2 - 0
lib/Playwright.pm

@@ -3,6 +3,8 @@ package Playwright;
 use strict;
 use warnings;
 
+use v5.28;
+
 use sigtrap qw/die normal-signals/;
 
 use File::pushd;

+ 2 - 0
lib/Playwright/Base.pm

@@ -3,6 +3,8 @@ package Playwright::Base;
 use strict;
 use warnings;
 
+use v5.28;
+
 use Sub::Install();
 
 use Async;

+ 2 - 0
lib/Playwright/Util.pm

@@ -3,6 +3,8 @@ package Playwright::Util;
 use strict;
 use warnings;
 
+use v5.28;
+
 use JSON::MaybeXS();
 use Carp qw{confess};