r60932 - in /branches/upstream/libproc-invokeeditor-perl/current: Changes META.yml lib/Proc/InvokeEditor.pm

ansgar-guest at users.alioth.debian.org ansgar-guest at users.alioth.debian.org
Sat Jul 31 05:40:56 UTC 2010


Author: ansgar-guest
Date: Sat Jul 31 05:40:40 2010
New Revision: 60932

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=60932
Log:
[svn-upgrade] new version libproc-invokeeditor-perl (1.04)

Modified:
    branches/upstream/libproc-invokeeditor-perl/current/Changes
    branches/upstream/libproc-invokeeditor-perl/current/META.yml
    branches/upstream/libproc-invokeeditor-perl/current/lib/Proc/InvokeEditor.pm

Modified: branches/upstream/libproc-invokeeditor-perl/current/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libproc-invokeeditor-perl/current/Changes?rev=60932&op=diff
==============================================================================
--- branches/upstream/libproc-invokeeditor-perl/current/Changes (original)
+++ branches/upstream/libproc-invokeeditor-perl/current/Changes Sat Jul 31 05:40:40 2010
@@ -15,3 +15,7 @@
 1.02 16 Dec 2007
   - Patches from Tim Booth tbooth at ceh.ac.uk to provide optional filename
 	suffix option.
+
+1.04 30 Jul 2010
+  - Add a "use warnings" to keep CPANTS happy.
+

Modified: branches/upstream/libproc-invokeeditor-perl/current/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libproc-invokeeditor-perl/current/META.yml?rev=60932&op=diff
==============================================================================
--- branches/upstream/libproc-invokeeditor-perl/current/META.yml (original)
+++ branches/upstream/libproc-invokeeditor-perl/current/META.yml Sat Jul 31 05:40:40 2010
@@ -1,6 +1,6 @@
 --- #YAML:1.0
 name:               Proc-InvokeEditor
-version:            1.03
+version:            1.04
 abstract:           Interface to external editor from perl
 author:
     - Michael Stevens <mstevens at etla.org>

Modified: branches/upstream/libproc-invokeeditor-perl/current/lib/Proc/InvokeEditor.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libproc-invokeeditor-perl/current/lib/Proc/InvokeEditor.pm?rev=60932&op=diff
==============================================================================
--- branches/upstream/libproc-invokeeditor-perl/current/lib/Proc/InvokeEditor.pm (original)
+++ branches/upstream/libproc-invokeeditor-perl/current/lib/Proc/InvokeEditor.pm Sat Jul 31 05:40:40 2010
@@ -1,6 +1,8 @@
 package Proc::InvokeEditor;
 
 use strict;
+use warnings;
+
 use File::Temp qw(tempfile);
 use File::Spec;
 use Carp::Assert;
@@ -30,7 +32,7 @@
 @EXPORT = qw(
 	
 );
-$VERSION = '1.03';
+$VERSION = '1.04';
 
 @DEFAULT_EDITORS = ( $ENV{'VISUAL'}, $ENV{'EDITOR'}, '/usr/bin/vi',
                      '/bin/vi', '/bin/ed'




More information about the Pkg-perl-cvs-commits mailing list