Skip to content

Commit

Permalink
Changes for version 1.14
Browse files Browse the repository at this point in the history
  • Loading branch information
book committed Oct 27, 2010
1 parent c7eba91 commit 3188a76
Show file tree
Hide file tree
Showing 5 changed files with 30 additions and 10 deletions.
18 changes: 18 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -1,5 +1,23 @@
Revision history for Git-Repository

1.14 Wed Oct 27 21:49:45 CEST 2010
[ENHANCEMENTS]
- complete rewrite of _has_git, which was renamed to _is_git,
with a much improved cache for the "is this git valid?" info
- calling new() with the 'git' option will now work correctly
when there is no git in the PATH (fixes RT bug #62283,
reported by Todd Rinaldo)
- improved the plugin system design (thanks to Aristotle Pagaltzis)
- fixes for making Git::Repository work with modules that do
bad things to STDIN, STDOUT and STDERR (thanks to Todd Rinaldo)
[TESTS]
- improved tests on Win32 (thanks to Olivier Raginel (BABAR)
for giving me access to a Win32 VM with Git installed)
[BUGS]
- sadly, the work on Win32 showed that Git::Repository doesn't
fully support that platform, but the test suite safely skips
the tests that hang under Win32. I hope to fix this over time.

1.13 Mon Oct 18 22:36:17 CEST 2010
[ENHANCEMENTS]
- using 'git' as an option of a Git::Repository object now works
Expand Down
9 changes: 5 additions & 4 deletions META.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ name: Git-Repository
provides:
Git::Repository:
file: lib/Git/Repository.pm
version: 1.13
version: 1.14
Git::Repository::Command:
file: lib/Git/Repository/Command.pm
version: 1.08
version: 1.09
Git::Repository::Log:
file: lib/Git/Repository/Log.pm
version: 1.00
Expand All @@ -27,9 +27,10 @@ provides:
version: 1.00
Git::Repository::Plugin:
file: lib/Git/Repository/Plugin.pm
version: 1.01
Git::Repository::Plugin::Log:
file: lib/Git/Repository/Plugin/Log.pm
version: 1.00
version: 1.01
requires:
Cwd: 0
File::Path: 0
Expand All @@ -39,4 +40,4 @@ requires:
resources:
license: http://dev.perl.org/licenses/
repository: http://github.com/book/Git-Repository
version: 1.13
version: 1.14
9 changes: 5 additions & 4 deletions MYMETA.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ name: Git-Repository
provides:
Git::Repository:
file: lib/Git/Repository.pm
version: 1.13
version: 1.14
Git::Repository::Command:
file: lib/Git/Repository/Command.pm
version: 1.08
version: 1.09
Git::Repository::Log:
file: lib/Git/Repository/Log.pm
version: 1.00
Expand All @@ -28,9 +28,10 @@ provides:
version: 1.00
Git::Repository::Plugin:
file: lib/Git/Repository/Plugin.pm
version: 1.01
Git::Repository::Plugin::Log:
file: lib/Git/Repository/Plugin/Log.pm
version: 1.00
version: 1.01
requires:
Cwd: 0
File::Path: 0
Expand All @@ -40,4 +41,4 @@ requires:
resources:
license: http://dev.perl.org/licenses/
repository: http://github.com/book/Git-Repository
version: 1.13
version: 1.14
2 changes: 1 addition & 1 deletion lib/Git/Repository.pm
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ use Scalar::Util qw( looks_like_number );

use Git::Repository::Command;

our $VERSION = '1.13';
our $VERSION = '1.14';

# 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
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ use Scalar::Util qw( blessed );
use File::Spec;
use Config;

our $VERSION = '1.08';
our $VERSION = '1.09';

# Trap the real STDIN/ERR/OUT file handles in case someone
# *COUGH* Catalyst *COUGH* screws with them which breaks open3
Expand Down

0 comments on commit 3188a76

Please sign in to comment.