From eeb85ce32a7154f49a46cfeec0da33eb692cc6ef Mon Sep 17 00:00:00 2001 From: IWAMURO Motonori Date: Thu, 18 Aug 2022 00:01:56 +0900 Subject: [PATCH] update readme and release note. --- README.md | 10 ++++------ RELEASENOTE.md | 5 +++++ 2 files changed, 9 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index bb6a6b9a..171b856b 100644 --- a/README.md +++ b/README.md @@ -19,12 +19,10 @@ https://github.com/vmi/selenese-runner-java/releases Release Note ------------ -### 4.0.0 +### 4.2.0 -* Catch up Selenium 4.1.0 and update dependency versions. -* **Remove PhantomJS driver support.** -* Update Maven plugin versions. -* Change to treat unsuccessful `waitFor*` command result as "Failure" in SIDE file. (#330) +* Catch up Selenium 4.4.0 and update dependency versions. + * Fix several problems associated with the update. Please check [RELEASENOTE.md](RELEASENOTE.md). @@ -86,7 +84,7 @@ Usage --set-speed : same as executing setSpeed(ms) command first. --height : set initial height. (excluding mobile) --width : set initial width. (excluding mobile) - --alerts-policy VAL : The default behaviour for unexpected alerts (accept/ignore/dismiss) + --alerts-policy VAL : The default behaviour for unexpected alerts (accept/dismiss/accept_and_notify/dismiss_and_notify/ignore) --define (-D) [:][+]= : define parameters for capabilities. is a value type: str (default), int or bool (multiple) --var (-V) = : set JSON value to variable with a specified name. (multiple) --rollup : define rollup rule by JavaScript. (multiple) diff --git a/RELEASENOTE.md b/RELEASENOTE.md index 17997525..bb134459 100644 --- a/RELEASENOTE.md +++ b/RELEASENOTE.md @@ -1,6 +1,11 @@ Selenese Runner Java Relase Note ================================ +### 4.2.0 + +* Catch up Selenium 4.4.0 and update dependency versions. + * Fix several problems associated with the update. + ### 4.1.0 * Fix ExecuteAsyncScript not working with Firefox. (#332, PR #333 by @blutorange)