Skip to content

Commit

Permalink
Release v1.009
Browse files Browse the repository at this point in the history
  • Loading branch information
dolmen committed Sep 24, 2013
2 parents 78a7dfa + e1b4767 commit 7b9d10a
Show file tree
Hide file tree
Showing 3 changed files with 39 additions and 4 deletions.
32 changes: 30 additions & 2 deletions CONTRIBUTING.pod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
=head1 NAME

How to constribute to C<github-keygen>?
How to contribute to C<github-keygen>?

=head1 DESCRIPTION

Expand All @@ -23,7 +23,12 @@ submitted as pull requests at github.
=item 2. Make your fix/feature

git checkout -b <my-patch> devel
...

$EDITOR bin/github-keygen

# Test...
bin/github-keygen ...

git commit

=item 3. Setup a fork
Expand All @@ -50,4 +55,27 @@ Redo step 2. and 4.

=back

=head1 FOR RELEASE MANAGER

=over 4

=item * Bump C<$VERSION>

git checkout devel
# Bump version number
$EDITOR/bin/github-keygen
# Update changelog
$EDITOR README.pod
git add bin/github-keygen README.pod
git commit

=item * Release

git checkout devel
./release.pl
git push origin devel release
git push origin --tags

=back

=cut
7 changes: 7 additions & 0 deletions README.pod
Original file line number Diff line number Diff line change
Expand Up @@ -235,6 +235,10 @@ releases. And you can also have a look to the commit log.

=over 4

=item v1.009

Added support for dashes in Github usernames. Thanks Pedro Figueiredo!

=item v1.008

Added connection sharing: connection to Github is kept alive for 60
Expand Down Expand Up @@ -340,6 +344,9 @@ L<Eric Lefevre|https://github.com/elefevre>: documentation patch.
L<Eu Beng Hee|https://github.com/ahbeng>: L<blog post about SSH connection sharing|http://interrobeng.com/2013/08/25/speed-up-git-5x-to-50x/> that inspired
changes in 1.008.

L<Pedro Figueiredo|https://github.com/pfig>: support for Github account with
dashes (v1.009).

If you want to contribute, have a look to L<CONTRIBUTING.pod>.

=head1 COPYRIGHT & LICENSE
Expand Down
4 changes: 2 additions & 2 deletions github-keygen
Original file line number Diff line number Diff line change
Expand Up @@ -12123,7 +12123,7 @@ use Sys::Hostname;

use constant HAS_TEXT_DIFF => eval { require Text::Diff; 1 };

our $VERSION = '1.008';
our $VERSION = '1.009';

use constant {
PROG => (File::Spec->splitpath($0))[2],
Expand Down Expand Up @@ -12209,7 +12209,7 @@ my %github_remove;

while (@ARGV) {
my $user = shift @ARGV;
pod2usage("invalid user '$user'") unless $user =~ /^[a-z0-9_]+$/;
pod2usage("invalid user '$user'") unless $user =~ /^[a-z0-9_-]+$/;

my $remove = 0;
my %u = (
Expand Down

0 comments on commit 7b9d10a

Please sign in to comment.