Skip to content

Commit

Permalink
DOCS: bump version & prepare 2.0.0rc8
Browse files Browse the repository at this point in the history
  • Loading branch information
yashaka committed Feb 13, 2024
1 parent 3652eb8 commit 55d2c72
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 3 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,12 @@ TODOs:
- can we force order of how `selene.*` is rendered on autocomplete? via `__all__`...
- deprecate `have.js_returned` in favour of `have.script_returned`

## 2.0.0rc8 (released on 13.02.2024)

### Nicer logging of "reason" in error messages

– by removed stacktrace in processing of timeout exception at wait.py (thanks to [@jacekziembla](https://github.com/jacekziembla))

## 2.0.0rc7 (released on 25.01.2024)

### Experimental browser._actions
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -557,7 +557,7 @@ TBD

<!-- References -->
[selenide]: http://selenide.org/
[latest-recommended-version]: https://pypi.org/project/selene/2.0.0rc7/
[latest-recommended-version]: https://pypi.org/project/selene/2.0.0rc8/
[brunch-ver-1]: https://github.com/yashaka/selene/tree/1.x
[selene-stable]: https://pypi.org/project/selene/1.0.2/
[python-37]: https://www.python.org/downloads/release/python-380/
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "selene"
version = "2.0.0rc7"
version = "2.0.0rc8"
description = "User-oriented browser tests in Python (Selenide port)"
authors = ["Iakiv Kramarenko <[email protected]>"]
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion selene/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -225,4 +225,4 @@
# """
from selene.core.entity import Element, Collection # noqa

__version__ = '2.0.0rc7'
__version__ = '2.0.0rc8'
1 change: 1 addition & 0 deletions selene/core/wait.py
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,7 @@ def logic(fn: Callable[[E], R]) -> R:
)
# TODO: think on how can we improve logging failures in selene, e.g. reverse msg and stacktrace
# stacktrace = getattr(reason, 'stacktrace', None)
# TODO: should we have an option to turn on stacktrace logging?
timeout = self._timeout
entity = self.entity

Expand Down

0 comments on commit 55d2c72

Please sign in to comment.