This is an automated email from the git hooks/post-receive script. jame-guest pushed a commit to tag v0.10 in repository libweasel-perl.
commit a67fe22e0ec1c56b3728f1a2f54072cc698973de Author: Erik Huelsmann <[email protected]> Date: Fri Sep 9 22:42:08 2016 +0200 * Prepare 0.10 release --- CHANGES | 5 +++++ dist.ini | 2 +- lib/Weasel.pm | 4 ++-- lib/Weasel/Session.pm | 5 ++++- 4 files changed, 12 insertions(+), 4 deletions(-) diff --git a/CHANGES b/CHANGES index 286e0c3..bc46c96 100644 --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,8 @@ +** 0.10 / 2016-09-09 + - Repair <5.14 compatibility + - Add new 'get_page_source' api to the driver + - Add driver API version check during session creation + ** 0.09 / 2016-09-04 - Set the correct version number in Weasel.pm diff --git a/dist.ini b/dist.ini index 07f5e9a..236284f 100644 --- a/dist.ini +++ b/dist.ini @@ -1,6 +1,6 @@ name = Weasel abstract = PHP's Mink inspired multi-protocol web-testing library for Perl -version = 0.09 +version = 0.10 author = Erik Huelsmann <[email protected]> copyright_holder = Erik Huelsmann main_module = lib/Pherkin/Extension/Weasel.pm diff --git a/lib/Weasel.pm b/lib/Weasel.pm index 0478686..2aa77b6 100644 --- a/lib/Weasel.pm +++ b/lib/Weasel.pm @@ -5,7 +5,7 @@ Weasel - Perl's php/Mink-inspired abstracted web-driver framework =head1 VERSION -0.09 +0.10 =head1 SYNOPSIS @@ -110,7 +110,7 @@ use warnings; use Moose; -our $VERSION = '0.09'; +our $VERSION = '0.10'; # From https://w3c.github.io/webdriver/webdriver-spec.html#keyboard-actions my %key_codes = ( diff --git a/lib/Weasel/Session.pm b/lib/Weasel/Session.pm index 4027d44..1ed907b 100644 --- a/lib/Weasel/Session.pm +++ b/lib/Weasel/Session.pm @@ -5,7 +5,7 @@ Weasel::Session - Connection to an encapsulated test driver =head1 VERSION -0.01 +0.02 =head1 SYNOPSIS @@ -42,6 +42,9 @@ use Module::Runtime qw/ use_module /;; use Weasel::FindExpanders qw/ expand_finder_pattern /; use Weasel::WidgetHandlers qw| best_match_handler_class |; +our $VERSION = '0.02'; + + =head1 ATTRIBUTES =over -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-perl/packages/libweasel-perl.git _______________________________________________ Pkg-perl-cvs-commits mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-perl-cvs-commits
