Skip to content

Commit 385f96f

Browse files
committed
[py] update change log and versions for 4.15.1
1 parent 186b03a commit 385f96f

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
@@ -19,7 +19,7 @@ compile_pip_requirements(
1919
],
2020
)
2121

22-
SE_VERSION = "4.15.0"
22+
SE_VERSION = "4.15.1"
2323

2424
BROWSER_VERSIONS = [
2525
"v85",

py/CHANGES

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
Selenium 4.15.1
2+
* Fix bug in using SE_MANAGER_PATH
3+
* Fix inadvertent code change in mutation_event
4+
15
Selenium 4.15.0
26
* Return a `pathlib.Path` when `SE_MANAGER_PATH` is set. closes #12929
37
* Do not set browser binary in selenium manager if it is an empty string (#12738)

py/docs/source/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ Download the server separately, from: https://www.selenium.dev/downloads/
130130

131131
Run the server from the command line::
132132

133-
java -jar selenium-server-4.15.0.jar
133+
java -jar selenium-server-4.15.1.jar
134134

135135
Then run your Python client scripts.
136136

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.14.0"
19+
__version__ = "4.15.1"

py/selenium/webdriver/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
from .wpewebkit.service import Service as WPEWebKitService # noqa
4545
from .wpewebkit.webdriver import WebDriver as WPEWebKit # noqa
4646

47-
__version__ = "4.14.0"
47+
__version__ = "4.15.1"
4848

4949
# We need an explicit __all__ because the above won't otherwise be exported.
5050
__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.15.0",
30+
'version': "4.15.1",
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)