Skip to content

Commit

Permalink
CHORE: bump version and prepare release 2.0.0rc6
Browse files Browse the repository at this point in the history
  • Loading branch information
yashaka committed Jan 25, 2024
1 parent 91ff35a commit 980f418
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ 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.0rc6 (to be released on ??.01.2024)
## 2.0.0rc6 (released on 25.01.2024)

### Goodbye python 3.7 and webdriver-manager 👋🏻

Expand Down
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ Find more below...

## Versions

- Latest recommended version to use is [2.0.0rc5+][latest-recommended-version]
- Latest recommended version to use is latest among [2.0.0rc*][latest-recommended-version]
- it's a completely new version of selene, with improved API and speed
- supports Python `3.8+`
- supports Selenium `>=4.12.0`
Expand Down Expand Up @@ -96,15 +96,15 @@ From `1.0.2` to `2.0.0b<LATEST>`:

## Prerequisites

[Python 3.7+][python-37]
[Python 3.8+][python-38]

Given [pyenv][pyenv] installed, installing needed version of Python is pretty simple:

```plain
$ pyenv install 3.7.3
$ pyenv global 3.7.3
$ pyenv install 3.8.13
$ pyenv global 3.8.13
$ python -V
Python 3.7.3
Python 3.8.13
```

## Installation
Expand All @@ -118,7 +118,7 @@ AND
```plain
poetry new my-tests-with-selene
cd my-tests-with-selene
pyenv local 3.7.3
pyenv local 3.8.13
```

WHEN latest pre-release recommended version:
Expand Down Expand Up @@ -557,10 +557,10 @@ TBD

<!-- References -->
[selenide]: http://selenide.org/
[latest-recommended-version]: https://pypi.org/project/selene/2.0.0rc5/
[latest-recommended-version]: https://pypi.org/project/selene/2.0.0rc6/
[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-370/
[python-37]: https://www.python.org/downloads/release/python-380/
[pyenv]: https://github.com/pyenv/pyenv
[poetry]: https://python-poetry.org/
[project-template]: https://github.com/yashaka/python-web-test
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.0rc5"
version = "2.0.0rc6"
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 @@ -227,4 +227,4 @@
# """
from selene.core.entity import Element, Collection # noqa

__version__ = '2.0.0rc5'
__version__ = '2.0.0rc6'

0 comments on commit 980f418

Please sign in to comment.