Skip to content

Commit bad5628

Browse files
[py] Create Python bindings Post1 release for Beta 2
1 parent 40eb42d commit bad5628

File tree

5 files changed

+8
-4
lines changed

5 files changed

+8
-4
lines changed

py/BUILD.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ py_wheel(
135135
strip_path_prefixes = [
136136
"py",
137137
],
138-
version = "4.0.0.b2",
138+
version = "4.0.0.b2.post1",
139139
visibility = ["//visibility:public"],
140140
deps = [
141141
":selenium-pkg",

py/CHANGES

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
Selenium 4 beta 2 Post 1
2+
3+
* Fix Chrome instantiation
4+
15
Selenium 4 beta 2
26

37
* Set up python for pinned browsers

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.0.0b2"
19+
__version__ = "4.0.0b2.post1"

py/selenium/webdriver/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,4 +38,4 @@
3838
from .common.proxy import Proxy # noqa
3939
from .common.keys import Keys # noqa
4040

41-
__version__ = '4.0.0b2'
41+
__version__ = '4.0.0b2.post1'

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.0.0b2",
30+
'version': "4.0.0b2.post1",
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)