[svn:p5ee] r14478 - in p5ee/trunk/App-Options: . lib/App
[email protected] Tue, 12 Oct 2010 08:49:14 -0700 (PDT)
| Newsgroups | perl.cvs.p5ee |
|---|---|
| Message-ID | <[email protected]> |
Author: spadkins
Date: Tue Oct 12 08:49:12 2010
New Revision: 14478
Modified:
p5ee/trunk/App-Options/CHANGES
p5ee/trunk/App-Options/MANIFEST
p5ee/trunk/App-Options/lib/App/Options.pm
Log:
prep for release 1.12
Modified: p5ee/trunk/App-Options/CHANGES
==============================================================================
--- p5ee/trunk/App-Options/CHANGES (original)
+++ p5ee/trunk/App-Options/CHANGES Tue Oct 12 08:49:12 2010
@@ -2,6 +2,13 @@
# CHANGE LOG
#############################################################################
+VERSION 1.12
+ x Added a copyright statement at the request of a Debian administrator.
+ https://rt.cpan.org/Public/Bug/Display.html?id=62017
+
+VERSION 1.11
+ x Added prefixadmin to the MANIFEST
+
VERSION 1.1
x Supports the "secure" option attribute. (Also, all options which end in "pass" or "password"
are assumed to be secure.) The value is a security level: 1=[don't print the value in a help screen].
@@ -11,7 +18,7 @@
VERSION 1.07
x Automagically add $PREFIX/lib/perl5 to @INC (only if it exists), else $PREFIX/lib/perl
Also check $PREFIX/share/perl and add it to @INC if it exists.
- Surprisingly, $PREFIX/share/perl and $PREFIX/lib/perl seems to be the directories created
+ Surprisingly, $PREFIX/share/perl and $PREFIX/lib/perl seem to be the directories created
and used under Ubuntu 8.04's perl.
x Allow dashes ("-") as a variable name (i.e. foo-bar = 1).
In doing this, I actually allow that any characters other than spaces/tabs/= can make up the variable name
Modified: p5ee/trunk/App-Options/MANIFEST
==============================================================================
--- p5ee/trunk/App-Options/MANIFEST (original)
+++ p5ee/trunk/App-Options/MANIFEST Tue Oct 12 08:49:12 2010
@@ -5,6 +5,7 @@
README
TODO
bin/prefix
+bin/prefixadmin
lib/App/Options.pm
t/app.conf
t/main.t
Modified: p5ee/trunk/App-Options/lib/App/Options.pm
==============================================================================
--- p5ee/trunk/App-Options/lib/App/Options.pm (original)
+++ p5ee/trunk/App-Options/lib/App/Options.pm Tue Oct 12 08:49:12 2010
@@ -14,7 +14,7 @@
use File::Spec;
use Config;
-$VERSION = "1.1";
+$VERSION = "1.12";
=head1 NAME
@@ -2188,6 +2188,7 @@
=head1 ACKNOWLEDGEMENTS
+ * (c) 2010 Stephen Adkins
* Author: Stephen Adkins <[email protected]>
* License: This is free software. It is licensed under the same terms as Perl itself.