diff --git a/Changes b/Changes index 5ed02ee..dc3fe55 100644 --- a/Changes +++ b/Changes @@ -59,3 +59,6 @@ Change to how page loading is checked in fire events. 0.132 Wed Jan 05 10:00:00 CET 2022 - Points DBUS address to null so xvfb does not hang after tests are complete + +0.133 Thu May 05 13:05:00 CET 2022 +- Fix regression in check/uncheck functionality diff --git a/MANIFEST b/MANIFEST index bedb221..de5ff15 100644 --- a/MANIFEST +++ b/MANIFEST @@ -17,6 +17,7 @@ MANIFEST README README.md t/01load.t +t/check.t t/cookie.t t/drag_and_drop.t t/drag_and_drop_mouse.t @@ -28,6 +29,7 @@ t/logging.t t/mouse.t t/navigator.t t/test/attribute.html +t/test/check.html t/test/confirm.html t/test/console_error.html t/test/cookie.html diff --git a/lib/WWW/WebKit2.pm b/lib/WWW/WebKit2.pm index 96f21fc..86f987e 100644 --- a/lib/WWW/WebKit2.pm +++ b/lib/WWW/WebKit2.pm @@ -55,7 +55,7 @@ use XSLoader; use English '-no_match_vars'; use POSIX qw(F_SETFD F_GETFD FD_CLOEXEC); -our $VERSION = '0.132'; +our $VERSION = '0.133'; use constant DOM_TYPE_ELEMENT => 1; use constant ORDERED_NODE_SNAPSHOT_TYPE => 7;