Skip to content

Commit

Permalink
Merge pull request #30 from orkunkaraduman/dev
Browse files Browse the repository at this point in the history
v2.01
  • Loading branch information
orkunkaraduman authored Mar 3, 2017
2 parents 9cba37e + b61c157 commit 35c4f84
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 13 deletions.
3 changes: 3 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -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
Expand Down
11 changes: 7 additions & 4 deletions README
Original file line number Diff line number Diff line change
Expand Up @@ -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
<https://metacpan.org/pod/distribution/App-Virtualenv/lib/App/Virtualenv
/virtualenv.pl>

DESCRIPTION
App::Virtualenv is a Perl package to create isolated Perl virtual
Expand Down
9 changes: 5 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
11 changes: 6 additions & 5 deletions lib/App/Virtualenv.pm
Original file line number Diff line number Diff line change
Expand Up @@ -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<virtualenv.pl|https://metacpan.org/pod/distribution/App-Virtualenv/lib/App/Virtualenv/virtualenv.pl>
=head1 DESCRIPTION
Expand All @@ -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();
Expand Down

0 comments on commit 35c4f84

Please sign in to comment.