Skip to content

Commit

Permalink
Releasing 1.93_01
Browse files Browse the repository at this point in the history
  • Loading branch information
petdance committed Sep 5, 2010
1 parent 647260b commit 8381aec
Show file tree
Hide file tree
Showing 6 changed files with 35 additions and 62 deletions.
20 changes: 5 additions & 15 deletions Ack.pm
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,15 @@ App::Ack - A container for functions for the ack program
=head1 VERSION
Version 1.92
Version 1.93_01
=cut

our $VERSION;
our $COPYRIGHT;
BEGIN {
$VERSION = '1.92';
$COPYRIGHT = 'Copyright 2005-2009 Andy Lester.';
$VERSION = '1.93_01';
$COPYRIGHT = 'Copyright 2005-2010 Andy Lester.';
}

our $fh;
Expand Down Expand Up @@ -1598,20 +1598,10 @@ sub exit_from_ack {

=head1 COPYRIGHT & LICENSE
Copyright 2005-2009 Andy Lester.
Copyright 2005-2010 Andy Lester.
This program is free software; you can redistribute it and/or modify
it under the terms of either:
=over 4
=item * the GNU General Public License as published by the Free
Software Foundation; either version 1, or (at your option) any later
version, or
=item * the "Artistic License" which comes with Perl 5.
=back
it under the terms of the Artistic License v2.0.
=cut

Expand Down
37 changes: 20 additions & 17 deletions Changes
Original file line number Diff line number Diff line change
@@ -1,18 +1,33 @@

NEXT
[ENHANCEMENTS]
Added --verilog and --vhdl types.
1.93_01 Sun Sep 5 16:00:29 CDT 2010
[FILE TYPE UPDATES]

Added --verilog, --vhdl and --clojure.

Files that match *.mk and *.mak as well as GNUmakefile are now included in
the ack filetype 'make' (issue 88).

Added RSpec's .spec type to the --ruby list.


[ENHANCEMENTS]
Updated the README to Markdown format. Thanks to Mark Szymanski
for the idea.

Added RSpec's .spec file to the --ruby list.

Added docs for -r, -R, --recurse options.

Added new switch --color-lineno and environment variable ACK_COLOR_LINENO,
which allow setting the line number color. (Marq Schneider)

Added option --show-types to output the types that ack considers
a file to have. (Torsten Blix)

'ack --count --no-filename regex' doesn't output a list of numbers but a
sum of all occurences. This is NOT what grep does but is the more sensible
behavior.


[FIXES]
Fixed ack misbehavior when using --match or not specifying a regex:

ack --match Sue
Expand All @@ -33,18 +48,6 @@ NEXT
Fixed issue 81: .ackrc now ignores leading/trailing whitespace.
(Torsten Blix)

Added option --show-types to output the types that ack considers
a file to have. (Torsten Blix)

Added --clojure (Janne Hietamäk)

Files that match *.mk and *.mak as well as GNUmakefile are now included in
the ack filetype 'make' (issue 88).

'ack --count --no-filename regex' doesn't output a list of numbers but a
sum of all occurences. This is NOT what grep does but is the more sensible
behavior.


1.92 Fri Dec 11 11:47:56 CST 2009

Expand Down
20 changes: 5 additions & 15 deletions ack
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
use warnings;
use strict;

our $VERSION = '1.92';
our $VERSION = '1.93_01';
# Check http://betterthangrep.com/ for updates

# These are all our globals.
Expand Down Expand Up @@ -959,20 +959,10 @@ and Pete Krawczyk.
=head1 COPYRIGHT & LICENSE
Copyright 2005-2009 Andy Lester.
Copyright 2005-2010 Andy Lester.
This program is free software; you can redistribute it and/or modify
it under the terms of either:
=over 4
=item * the GNU General Public License as published by the Free
Software Foundation; either version 1, or (at your option) any later
version, or
=item * the Artistic License version 2.0.
=back
it under the terms of the Artistic License v2.0.
=cut
package File::Next;
Expand Down Expand Up @@ -1155,8 +1145,8 @@ use strict;
our $VERSION;
our $COPYRIGHT;
BEGIN {
$VERSION = '1.92';
$COPYRIGHT = 'Copyright 2005-2009 Andy Lester.';
$VERSION = '1.93_01';
$COPYRIGHT = 'Copyright 2005-2010 Andy Lester.';
}

our $fh;
Expand Down
16 changes: 3 additions & 13 deletions ack-base
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
use warnings;
use strict;

our $VERSION = '1.92';
our $VERSION = '1.93_01';
# Check http://betterthangrep.com/ for updates

# These are all our globals.
Expand Down Expand Up @@ -951,19 +951,9 @@ and Pete Krawczyk.
=head1 COPYRIGHT & LICENSE
Copyright 2005-2009 Andy Lester.
Copyright 2005-2010 Andy Lester.
This program is free software; you can redistribute it and/or modify
it under the terms of either:
=over 4
=item * the GNU General Public License as published by the Free
Software Foundation; either version 1, or (at your option) any later
version, or
=item * the Artistic License version 2.0.
=back
it under the terms of the Artistic License v2.0.
=cut
2 changes: 1 addition & 1 deletion ack-help-dirs.txt
Original file line number Diff line number Diff line change
Expand Up @@ -123,4 +123,4 @@ Miscellaneous:

Exit status is 0 if match, 1 if no match.

This is version 1.92 of ack.
This is version 1.93_01 of ack.
2 changes: 1 addition & 1 deletion ack-help.txt
Original file line number Diff line number Diff line change
Expand Up @@ -123,4 +123,4 @@ Miscellaneous:

Exit status is 0 if match, 1 if no match.

This is version 1.92 of ack.
This is version 1.93_01 of ack.

0 comments on commit 8381aec

Please sign in to comment.