From 16290e92f06348bec15a0a282db8561aedf348ba Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ingy=20d=C3=B6t=20Net?= Date: Sat, 16 Aug 2014 15:36:18 -0700 Subject: [PATCH] CPAN Release 0.73 - Remove 'use 5.x.x' from code --- .travis.yml | 7 +++++++ Changes | 5 +++++ Meta | 2 +- lib/IO/All.pm | 7 ++----- 4 files changed, 15 insertions(+), 6 deletions(-) diff --git a/.travis.yml b/.travis.yml index 79fe2e0..f4c1497 100644 --- a/.travis.yml +++ b/.travis.yml @@ -32,6 +32,13 @@ script: after_success: - cover -report coveralls +notifications: + irc: + channels: + - irc.perl.org#io-all + on_success: change + on_failure: always + skip_join: true # Hack to not run on tag pushes: branches: diff --git a/Changes b/Changes index 6ac6d15..3aa1a0e 100644 --- a/Changes +++ b/Changes @@ -1,4 +1,9 @@ --- +version: 0.73 +date: Sat Aug 16 15:35:55 PDT 2014 +changes: +- Remove 'use 5.x.x' from code +--- version: 0.72 date: Sat Aug 16 11:19:00 PDT 2014 changes: diff --git a/Meta b/Meta index 8eee4de..1ab112a 100644 --- a/Meta +++ b/Meta @@ -1,7 +1,7 @@ =meta: 0.0.2 name: IO-All -version: 0.72 +version: 0.73 abstract: IO::All to Larry Wall! homepage: https://metacpan.org/release/IO-All language: perl diff --git a/lib/IO/All.pm b/lib/IO/All.pm index 3ca5f05..e1f112b 100755 --- a/lib/IO/All.pm +++ b/lib/IO/All.pm @@ -1,9 +1,6 @@ +use strict; use warnings; package IO::All; -our $VERSION = '0.72'; - -use 5.006001; -use strict; -use warnings; +our $VERSION = '0.73'; require Carp; # So one can use Carp::carp "$message" - without the parenthesis.