Skip to content

Commit 728db91

Browse files
committed
[py] Bumping Python to 4.8.2
1 parent 835ee7e commit 728db91

File tree

6 files changed

+9
-5
lines changed

6 files changed

+9
-5
lines changed

py/BUILD.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ compile_pip_requirements(
1616
requirements_txt = ":requirements_lock.txt",
1717
)
1818

19-
SE_VERSION = "4.8.1"
19+
SE_VERSION = "4.8.2"
2020

2121
BROWSER_VERSIONS = [
2222
"v85",

py/CHANGES

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
Selenium 4.8.2
2+
* Update tox.ini for a valid "isort" version (#11667)
3+
* Undo a bug fix that caused a worse bug. (#11666)
4+
15
Selenium 4.8.1
26
* Add CDP files for v110 and remove v107
37
* pylint fixes including tidy of f strings, simplifications of conditional statements and isinstances (#11205)

py/docs/source/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ If you have `pip <https://pip.pypa.io/>`_ on your system, you can simply install
3535

3636
pip install -U selenium
3737

38-
Alternately, you can download the source distribution from `PyPI <https://pypi.org/project/selenium/#files>`_ (e.g. selenium-4.8.1.tar.gz), unarchive it, and run::
38+
Alternately, you can download the source distribution from `PyPI <https://pypi.org/project/selenium/#files>`_ (e.g. selenium-4.8.2.tar.gz), unarchive it, and run::
3939

4040
python setup.py install
4141

py/selenium/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@
1616
# under the License.
1717

1818

19-
__version__ = "4.8.1"
19+
__version__ = "4.8.2"

py/selenium/webdriver/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
from .wpewebkit.options import Options as WPEWebKitOptions # noqa
3737
from .wpewebkit.webdriver import WebDriver as WPEWebKit # noqa
3838

39-
__version__ = "4.8.1"
39+
__version__ = "4.8.2"
4040

4141
# We need an explicit __all__ because the above won't otherwise be exported.
4242
__all__ = [

py/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
setup_args = {
2828
'cmdclass': {'install': install},
2929
'name': 'selenium',
30-
'version': "4.8.1",
30+
'version': "4.8.2",
3131
'license': 'Apache 2.0',
3232
'description': 'Python bindings for Selenium',
3333
'long_description': open(join(abspath(dirname(__file__)), "README.rst")).read(),

0 commit comments

Comments
 (0)