File tree 2 files changed +27
-4
lines changed
2 files changed +27
-4
lines changed Original file line number Diff line number Diff line change 1
1
Revision history for Perl module Git::PurePerl:
2
2
3
- 0.42
3
+ 0.42_01 Mon Nov 23 11:44:51 GMT 2009
4
4
- allow put_object to update other heads than just 'master'
5
5
(thanks to martijn)
6
+ - Fix bug when the ref dirs are more than two levels deep
7
+ - Fix commit object to support multiple parents. This is seen in merge
8
+ commits
9
+ - Add object_kind method to tag objects.
10
+ - Dev release with version bump skipping 0.42 so that Gitalist can depend
11
+ on >= 0.42 but we don't have to push a real release until I've done
12
+ a little more maintainance work.
6
13
7
14
0.41 Tue Apr 21 20:41:07 BST 2009
8
15
- allow subdirectories in .git/refs/*/ (thanks to martijn)
Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ use Git::PurePerl::Protocol;
34
34
use IO::Digest;
35
35
use IO::Socket::INET;
36
36
use Path::Class;
37
- our $VERSION = ' 0.41 ' ;
37
+ our $VERSION = ' 0.42_01 ' ;
38
38
39
39
has ' directory' => (
40
40
is => ' ro' ,
@@ -471,15 +471,31 @@ It was mostly based on Grit L<http://grit.rubyforge.org/>.
471
471
472
472
=back
473
473
474
+ =head1 MAINTAINANCE
475
+
476
+ This module is maintained in git at L<http://github.com/bobtfish/git-pureperl/> .
477
+
478
+ Patches are welcome, please come speak to one of the L<Gitalist> team
479
+ on C<< #gitalist >>.
480
+
474
481
=head1 AUTHOR
475
482
476
483
477
484
485
+ =head1 CONTRIBUTORS
486
+
487
+ Chris Reinhardt
488
+ Tomas (t0m) Doran
489
+ Dan (broquaint) Brook
490
+
478
491
=head1 COPYRIGHT
479
492
480
- Copyright (C) 2008, Leon Brocard.
493
+ Copyright (C) 2008, Leon Brocard and the above mentioned contributors .
481
494
482
495
=head1 LICENSE
483
496
484
- This module is free software; you can redistribute it or
497
+ This module is free software; you can redistribute it or
485
498
modify it under the same terms as Perl itself.
499
+
500
+ =cut
501
+
You can’t perform that action at this time.
0 commit comments