Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
Max Maischein committed Oct 26, 2014
1 parent 52fd282 commit 7cc0435
Show file tree
Hide file tree
Showing 10 changed files with 25 additions and 21 deletions.
4 changes: 4 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@ TO DO:
. Make ->set_visible also support select+option inputs
. Add tests for _field_by_name for #foo and .foo case

0.78 20141026
. Pull in fixed prerequisite MozRepl::RemoteObject v0.39
. Test fixes

0.77 20141020
+ Actually support coordinates for ->click({...}, $x, $y )
. Test fixes
Expand Down
2 changes: 1 addition & 1 deletion lib/Firefox/Application.pm
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ use URI ();
use Carp qw(carp croak);

use vars qw'$VERSION';
$VERSION = '0.77';
$VERSION = '0.78';

=head1 NAME
Expand Down
2 changes: 1 addition & 1 deletion lib/Firefox/Application/API35.pm
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package Firefox::Application::API35;
use strict;
use parent 'Firefox::Application';
use vars qw($VERSION);
$VERSION = '0.77';
$VERSION = '0.78';

=head1 NAME
Expand Down
2 changes: 1 addition & 1 deletion lib/Firefox/Application/API36.pm
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ use strict;
use parent 'Firefox::Application';
use Firefox::Application::API35;
use vars qw($VERSION);
$VERSION = '0.77';
$VERSION = '0.78';

=head1 NAME
Expand Down
2 changes: 1 addition & 1 deletion lib/Firefox/Application/API40.pm
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ use strict;
use parent 'Firefox::Application';
use vars qw($VERSION %addon_types);
use MozRepl::RemoteObject qw(as_list);
$VERSION = '0.77';
$VERSION = '0.78';

=head1 NAME
Expand Down
2 changes: 1 addition & 1 deletion lib/HTML/Display/MozRepl.pm
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ use Carp qw(carp);
use WWW::Mechanize::Firefox;
use parent 'HTML::Display::Common';
use vars qw($VERSION);
$VERSION = '0.77';
$VERSION = '0.78';

=head1 NAME
Expand Down
2 changes: 1 addition & 1 deletion lib/HTTP/Cookies/MozRepl.pm
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ use parent 'HTTP::Cookies';
use Carp qw[croak];

use vars qw[$VERSION];
$VERSION = '0.77';
$VERSION = '0.78';

=head1 NAME
Expand Down
2 changes: 1 addition & 1 deletion lib/WWW/Mechanize/Firefox.pm
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ use Encode qw(encode decode);
use Carp qw(carp croak );

use vars qw'$VERSION %link_spec @CARP_NOT';
$VERSION = '0.77';
$VERSION = '0.78';
@CARP_NOT = ('MozRepl::RemoteObject',
'MozRepl::AnyEvent',
'MozRepl::RemoteObject::Instance'
Expand Down
2 changes: 1 addition & 1 deletion lib/WWW/Mechanize/Firefox/DSL.pm
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ use Object::Import;
use Carp qw(croak);

use vars qw($VERSION @CARP_NOT);
$VERSION = '0.77';
$VERSION = '0.78';

@CARP_NOT = (qw[
WWW::Mechanize::Firefox
Expand Down
26 changes: 13 additions & 13 deletions lib/WWW/Mechanize/Firefox/Examples.pm
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ package WWW::Mechanize::Firefox::Examples;

use strict;
use vars qw($VERSION);
$VERSION = '0.77';
$VERSION = '0.78';

1;

Expand Down Expand Up @@ -79,7 +79,7 @@ The following is a list of the 12 example programs that are included in the WWW:
<>;
Download this example: L<http://cpansearch.perl.org/src/CORION/WWW-Mechanize-Firefox-0.77/examples/open-local-file.pl>
Download this example: L<http://cpansearch.perl.org/src/CORION/WWW-Mechanize-Firefox-0.78/examples/open-local-file.pl>
=head2 Example: open-url.pl
Expand All @@ -94,7 +94,7 @@ Download this example: L<http://cpansearch.perl.org/src/CORION/WWW-Mechanize-Fir
<>;
Download this example: L<http://cpansearch.perl.org/src/CORION/WWW-Mechanize-Firefox-0.77/examples/open-url.pl>
Download this example: L<http://cpansearch.perl.org/src/CORION/WWW-Mechanize-Firefox-0.78/examples/open-url.pl>
=head2 Example: screenshot.pl
Expand Down Expand Up @@ -194,7 +194,7 @@ Download this example: L<http://cpansearch.perl.org/src/CORION/WWW-Mechanize-Fir
=cut
Download this example: L<http://cpansearch.perl.org/src/CORION/WWW-Mechanize-Firefox-0.77/examples/screenshot.pl>
Download this example: L<http://cpansearch.perl.org/src/CORION/WWW-Mechanize-Firefox-0.78/examples/screenshot.pl>
=head2 Example: dump-links.pl
Expand Down Expand Up @@ -230,7 +230,7 @@ Download this example: L<http://cpansearch.perl.org/src/CORION/WWW-Mechanize-Fir
=cut
Download this example: L<http://cpansearch.perl.org/src/CORION/WWW-Mechanize-Firefox-0.77/examples/dump-links.pl>
Download this example: L<http://cpansearch.perl.org/src/CORION/WWW-Mechanize-Firefox-0.78/examples/dump-links.pl>
=head2 Example: bcat.pl
Expand Down Expand Up @@ -353,7 +353,7 @@ if (! $encode_type) {
=cut
Download this example: L<http://cpansearch.perl.org/src/CORION/WWW-Mechanize-Firefox-0.77/examples/bcat.pl>
Download this example: L<http://cpansearch.perl.org/src/CORION/WWW-Mechanize-Firefox-0.78/examples/bcat.pl>
=head2 Example: manipulate-javascript.pl
Expand Down Expand Up @@ -392,7 +392,7 @@ Download this example: L<http://cpansearch.perl.org/src/CORION/WWW-Mechanize-Fir
=cut
Download this example: L<http://cpansearch.perl.org/src/CORION/WWW-Mechanize-Firefox-0.77/examples/manipulate-javascript.pl>
Download this example: L<http://cpansearch.perl.org/src/CORION/WWW-Mechanize-Firefox-0.78/examples/manipulate-javascript.pl>
=head2 Example: javascript.pl
Expand Down Expand Up @@ -424,7 +424,7 @@ Download this example: L<http://cpansearch.perl.org/src/CORION/WWW-Mechanize-Fir
=cut
Download this example: L<http://cpansearch.perl.org/src/CORION/WWW-Mechanize-Firefox-0.77/examples/javascript.pl>
Download this example: L<http://cpansearch.perl.org/src/CORION/WWW-Mechanize-Firefox-0.78/examples/javascript.pl>
=head2 Example: js-console.pl
Expand Down Expand Up @@ -508,7 +508,7 @@ Download this example: L<http://cpansearch.perl.org/src/CORION/WWW-Mechanize-Fir
=cut
Download this example: L<http://cpansearch.perl.org/src/CORION/WWW-Mechanize-Firefox-0.77/examples/js-console.pl>
Download this example: L<http://cpansearch.perl.org/src/CORION/WWW-Mechanize-Firefox-0.78/examples/js-console.pl>
=head2 Example: tail-console.pl
Expand Down Expand Up @@ -628,7 +628,7 @@ Download this example: L<http://cpansearch.perl.org/src/CORION/WWW-Mechanize-Fir
=cut
Download this example: L<http://cpansearch.perl.org/src/CORION/WWW-Mechanize-Firefox-0.77/examples/tail-console.pl>
Download this example: L<http://cpansearch.perl.org/src/CORION/WWW-Mechanize-Firefox-0.78/examples/tail-console.pl>
=head2 Example: urlbar.pl
Expand Down Expand Up @@ -739,7 +739,7 @@ Download this example: L<http://cpansearch.perl.org/src/CORION/WWW-Mechanize-Fir
};
Download this example: L<http://cpansearch.perl.org/src/CORION/WWW-Mechanize-Firefox-0.77/examples/urlbar.pl>
Download this example: L<http://cpansearch.perl.org/src/CORION/WWW-Mechanize-Firefox-0.78/examples/urlbar.pl>
=head2 Example: fullscreen.pl
Expand Down Expand Up @@ -777,7 +777,7 @@ Download this example: L<http://cpansearch.perl.org/src/CORION/WWW-Mechanize-Fir
=cut
Download this example: L<http://cpansearch.perl.org/src/CORION/WWW-Mechanize-Firefox-0.77/examples/fullscreen.pl>
Download this example: L<http://cpansearch.perl.org/src/CORION/WWW-Mechanize-Firefox-0.78/examples/fullscreen.pl>
=head2 Example: proxy-settings.pl
Expand Down Expand Up @@ -828,7 +828,7 @@ my $prefs = $ff->repl->expr(<<'JS');
=cut
Download this example: L<http://cpansearch.perl.org/src/CORION/WWW-Mechanize-Firefox-0.77/examples/proxy-settings.pl>
Download this example: L<http://cpansearch.perl.org/src/CORION/WWW-Mechanize-Firefox-0.78/examples/proxy-settings.pl>
=head1 AUTHOR
Expand Down

0 comments on commit 7cc0435

Please sign in to comment.