From 007ebe0c484418f78ef4ad7026620ccb2174c6f1 Mon Sep 17 00:00:00 2001 From: yashaka Date: Tue, 22 Feb 2022 11:51:44 +0200 Subject: [PATCH] [#375] CHORE: bump version to 2.0.0b1 DOCS: final comments in changelog --- CHANGELOG.md | 10 ++++++---- pyproject.toml | 2 +- selene/__init__.py | 2 +- 3 files changed, 8 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 82c33449..fe37ec95 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -78,8 +78,12 @@ - should we make original config (not shared) mutable? - TODO: support python 3.10 [#393](https://github.com/yashaka/selene/issues/393) -## 2.0.0a41 (to be released on 23.02.2022) +## 2.0.0b1 (to be released on 23.02.2022) - added support selenium 4.1 [#375](https://github.com/yashaka/selene/issues/375) + - the =4.1 version is frozen/hardcoded as dependency + - without backwards compatibility to selenium 3 + - the newly added service arg have been added to automatic driver management on the selene side + - yet, if anyone needs backwards compatibility, we can consider implementing it in following patches, feel free to file an issue;) - fixed [#398](https://github.com/yashaka/selene/issues/398) - Upgrade [webdriver-manager](https://github.com/SergeyPirogov/webdriver_manager) 3.5.0 -> 3.5.3 ([see changes](https://github.com/SergeyPirogov/webdriver_manager/compare/v3.5.0...v.3.5.3)) - removed deprecation @@ -94,9 +98,7 @@ - yes, send_keys is low level, but sometimes somebody needs this low level style, because of the nature and context of send_keys usage, like sending keys to hidden fields - yet not sure about this decision... let's see... -## 2.0.0a40 -!!!this release should be beta-tested!!! - +## 2.0.0a40 (released on 09.10.2021) - added `browser.config.wait_for_no_overlap_found_by_js` (`False` by default) - making following element methods to wait for no overlap: - type(text) diff --git a/pyproject.toml b/pyproject.toml index e1f271c6..919c8323 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "selene" -version = "2.0.0a41" +version = "2.0.0b1" description = "User-oriented browser tests in Python (Selenide port)" authors = ["Iakiv Kramarenko "] license = "MIT" diff --git a/selene/__init__.py b/selene/__init__.py index e8c40dda..ef8a1e28 100644 --- a/selene/__init__.py +++ b/selene/__init__.py @@ -220,7 +220,7 @@ # """ # todo: add here some type imports like Element, Collection, etc. -__version__ = '2.0.0a41' +__version__ = '2.0.0b1' # --- DEPRECATED, and will be removed soon --- #