diff --git a/Changes b/Changes index 1442999..50f2117 100644 --- a/Changes +++ b/Changes @@ -1,3 +1,6 @@ +2.01 2017-03-04 + - POD changes + 2.00 2017-03-03 - Removed Perl in Virtual environment (PiV) - App::Virtualenv::Piv is deprecated now diff --git a/README b/README index c1b568d..fef0ea4 100644 --- a/README +++ b/README @@ -2,14 +2,17 @@ NAME App::Virtualenv - Perl virtual environment VERSION - version 2.00 + version 2.01 ABSTRACT Perl virtual environment - use App::Virtualenv; - - run; + #!/bin/sh + perl -MApp::Virtualenv -erun -- environment_path + + See also: virtualenv.pl + DESCRIPTION App::Virtualenv is a Perl package to create isolated Perl virtual diff --git a/README.md b/README.md index eee6645..d0df5ab 100644 --- a/README.md +++ b/README.md @@ -4,15 +4,16 @@ App::Virtualenv - Perl virtual environment # VERSION -version 2.00 +version 2.01 # ABSTRACT Perl virtual environment - use App::Virtualenv; - - run; + #!/bin/sh + perl -MApp::Virtualenv -erun -- environment_path + +See also: [virtualenv.pl](https://metacpan.org/pod/distribution/App-Virtualenv/lib/App/Virtualenv/virtualenv.pl) # DESCRIPTION diff --git a/lib/App/Virtualenv.pm b/lib/App/Virtualenv.pm index 5660e6c..8624393 100644 --- a/lib/App/Virtualenv.pm +++ b/lib/App/Virtualenv.pm @@ -5,15 +5,16 @@ App::Virtualenv - Perl virtual environment =head1 VERSION -version 2.00 +version 2.01 =head1 ABSTRACT Perl virtual environment - use App::Virtualenv; - - run; + #!/bin/sh + perl -MApp::Virtualenv -erun -- environment_path + +See also: L =head1 DESCRIPTION @@ -36,7 +37,7 @@ use Lazy::Utils; BEGIN { require Exporter; - our $VERSION = '2.00'; + our $VERSION = '2.01'; our @ISA = qw(Exporter); our @EXPORT = qw(main run); our @EXPORT_OK = qw();