Skip to content

Commit

Permalink
Changes for version 1.12
Browse files Browse the repository at this point in the history
  • Loading branch information
book committed Oct 4, 2010
1 parent c7b568f commit cfb333c
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 8 deletions.
5 changes: 5 additions & 0 deletions Changes
@@ -1,5 +1,10 @@
Revision history for Git-Repository

1.12 Mon Oct 4 02:30:51 CEST 2010
[ENHANCEMENTS]
- the input option can now be empty: it means "close stdin first"
- if the input option is undef, it still means "don't touch stdin"

1.11 Sat Oct 2 18:17:33 CEST 2010
[ENHANCEMENTS]
- fixed a bug in version comparison
Expand Down
6 changes: 3 additions & 3 deletions META.yml
Expand Up @@ -15,10 +15,10 @@ name: Git-Repository
provides:
Git::Repository:
file: lib/Git/Repository.pm
version: 1.11
version: 1.12
Git::Repository::Command:
file: lib/Git/Repository/Command.pm
version: 1.06
version: 1.07
requires:
Cwd: 0
File::Path: 0
Expand All @@ -28,4 +28,4 @@ requires:
resources:
license: http://dev.perl.org/licenses/
repository: http://github.com/book/Git-Repository
version: 1.11
version: 1.12
6 changes: 3 additions & 3 deletions MYMETA.yml
Expand Up @@ -16,10 +16,10 @@ name: Git-Repository
provides:
Git::Repository:
file: lib/Git/Repository.pm
version: 1.11
version: 1.12
Git::Repository::Command:
file: lib/Git/Repository/Command.pm
version: 1.06
version: 1.07
requires:
Cwd: 0
File::Path: 0
Expand All @@ -29,4 +29,4 @@ requires:
resources:
license: http://dev.perl.org/licenses/
repository: http://github.com/book/Git-Repository
version: 1.11
version: 1.12
2 changes: 1 addition & 1 deletion lib/Git/Repository.pm
Expand Up @@ -11,7 +11,7 @@ use Scalar::Util qw( looks_like_number );

use Git::Repository::Command;

our $VERSION = '1.11';
our $VERSION = '1.12';

# a few simple accessors
for my $attr (qw( git_dir work_tree options )) {
Expand Down
2 changes: 1 addition & 1 deletion lib/Git/Repository/Command.pm
Expand Up @@ -12,7 +12,7 @@ use Scalar::Util qw( blessed );
use File::Spec;
use Config;

our $VERSION = '1.06';
our $VERSION = '1.07';

# a few simple accessors
for my $attr (qw( pid stdin stdout stderr exit signal core )) {
Expand Down

0 comments on commit cfb333c

Please sign in to comment.