From 0a6340c222e9a289e782d8ef9b2a8b41d533b2ff Mon Sep 17 00:00:00 2001 From: Chase Whitener Date: Mon, 15 Oct 2018 22:44:24 -0400 Subject: [PATCH] Prep for release. * update change log * update build to be stable * update version to remove underscore --- Changes | 5 ++++- META.json | 5 +++-- Makefile.PL | 1 + lib/File/Slurp.pm | 2 +- 4 files changed, 9 insertions(+), 4 deletions(-) diff --git a/Changes b/Changes index 8feca56..515a2d2 100644 --- a/Changes +++ b/Changes @@ -1,6 +1,6 @@ Revision history File::Slurp -9999.22_01 2018-10-09 (TRIAL) +9999.22 2018-10-15 - Update the SYNOPSIS documentation. (Graham Knop) - Fix some EUMM metadata depending on version. (Dan Book) - Fix Windows path concatenation on read_dir. (James Keenan) @@ -9,6 +9,9 @@ Revision history File::Slurp - Remove the README file - Remove some work-arounds for older Perls < 5.6 - Do not inherit from Exporter (requires Exporter 5.57) + - Fix perms.t to run on all platforms (Aristotle Pagaltzis, Linda Walsh + via RT #92401) + - Clean up handle.t (we no longer use the -w flag anywhere) 9999.21 2018-10-08 - Unset $^W in a few strategic places to silence warnings when Test::Harness diff --git a/META.json b/META.json index c3f0704..6c8abfe 100644 --- a/META.json +++ b/META.json @@ -63,7 +63,7 @@ } } }, - "release_status" : "unstable", + "release_status" : "stable", "resources" : { "repository" : { "type" : "git", @@ -71,8 +71,9 @@ "web" : "https://github.com/perhunter/slurp" } }, - "version" : "9999.22_01", + "version" : "9999.22", "x_contributors" : [ + "Aristotle Pagaltzis ", "Chase Whitener ", "Dan Book ", "Graham Knop ", diff --git a/Makefile.PL b/Makefile.PL index d6792df..3d0ce00 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -65,6 +65,7 @@ my %WriteMakefileArgs = ( }, }, 'x_contributors' => [ + 'Aristotle Pagaltzis ', 'Chase Whitener ', 'Dan Book ', 'Graham Knop ', diff --git a/lib/File/Slurp.pm b/lib/File/Slurp.pm index af77e02..b12728f 100644 --- a/lib/File/Slurp.pm +++ b/lib/File/Slurp.pm @@ -3,7 +3,7 @@ package File::Slurp; use strict; use warnings ; -our $VERSION = '9999.22_01'; +our $VERSION = '9999.22'; $VERSION = eval $VERSION; use Carp ;