Skip to content

Commit a12c3b5

Browse files
committed
[build] Moving versions to nightly
1 parent 5f9cec8 commit a12c3b5

File tree

12 files changed

+23
-18
lines changed

12 files changed

+23
-18
lines changed

Rakefile

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -640,7 +640,12 @@ namespace :py do
640640
# to start doing nightly builds.
641641
new_version = old_version + ".dev#{Time.now.strftime("%Y%m%d%H%M")}"
642642
else
643-
new_version = updated_version(old_version.gsub(/\.dev\d+$/, ''), arguments[:version])
643+
if old_version.include?('.dev')
644+
new_version = old_version.gsub(/\.dev\d+$/, '')
645+
else
646+
new_version = updated_version(old_version.gsub(/\.dev\d+$/, ''), arguments[:version])
647+
new_version = new_version + ".dev#{Time.now.strftime("%Y%m%d%H%M")}"
648+
end
644649
end
645650

646651
['py/setup.py',
@@ -658,7 +663,7 @@ namespace :py do
658663
text = File.read('py/docs/source/conf.py').gsub(old_short_version, new_short_version)
659664
File.open('py/docs/source/conf.py', "w") { |f| f.puts text }
660665

661-
Rake::Task['py:changelog'].invoke unless new_version.include?('nightly') || bump_nightly
666+
Rake::Task['py:changelog'].invoke unless new_version.include?('.dev') || bump_nightly
662667
end
663668

664669
desc 'Update Python Syntax'

java/version.bzl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
SE_VERSION = "4.19.0"
1+
SE_VERSION = "4.20.0-SNAPSHOT"
22
TOOLS_JAVA_VERSION = "17"

py/BUILD.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ compile_pip_requirements(
4040
],
4141
)
4242

43-
SE_VERSION = "4.19.0"
43+
SE_VERSION = "4.20.0.dev202403271845"
4444

4545
BROWSER_VERSIONS = [
4646
"v85",

py/docs/source/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,9 +56,9 @@
5656
# built documents.
5757
#
5858
# The short X.Y version.
59-
version = '4.19'
59+
version = '4.20'
6060
# The full version, including alpha/beta/rc tags.
61-
release = '4.19.0'
61+
release = '4.20.0.dev202403271845'
6262

6363
# The language for content autogenerated by Sphinx. Refer to documentation
6464
# for a list of supported languages.

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.19.0"
19+
__version__ = "4.20.0.dev202403271845"

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.19.0"
47+
__version__ = "4.20.0.dev202403271845"
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.19.0",
30+
'version': "4.20.0.dev202403271845",
3131
'license': 'Apache 2.0',
3232
'description': 'Python bindings for Selenium',
3333
'long_description': open(join(abspath(dirname(__file__)), "README.rst")).read(),

rb/lib/selenium/webdriver/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,6 @@
1919

2020
module Selenium
2121
module WebDriver
22-
VERSION = '4.19.0'
22+
VERSION = '4.20.0.nightly'
2323
end # WebDriver
2424
end # Selenium

rust/BUILD.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ rust_binary(
7777
name = "selenium-manager",
7878
srcs = ["src/main.rs"],
7979
edition = "2021",
80-
version = "0.4.19",
80+
version = "0.4.20-nightly",
8181
visibility = ["//visibility:public"],
8282
deps = [
8383
":selenium_manager",

rust/Cargo.Bazel.lock

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"checksum": "c92c30dfcee338ee7a89723929f757bb27727238576facf2e007922d5f3b8643",
2+
"checksum": "429663180e806b5eded3d78e76d2e9fcf145a9daa6790b6faa598196d2c64103",
33
"crates": {
44
"addr2line 0.19.0": {
55
"name": "addr2line",
@@ -11135,9 +11135,9 @@
1113511135
],
1113611136
"license_file": "LICENSE"
1113711137
},
11138-
"selenium-manager 0.4.19": {
11138+
"selenium-manager 0.4.20-nightly": {
1113911139
"name": "selenium-manager",
11140-
"version": "0.4.19",
11140+
"version": "0.4.20-nightly",
1114111141
"package_url": "https://github.com/SeleniumHQ/selenium",
1114211142
"repository": null,
1114311143
"targets": [
@@ -11270,7 +11270,7 @@
1127011270
"selects": {}
1127111271
},
1127211272
"edition": "2021",
11273-
"version": "0.4.19"
11273+
"version": "0.4.20-nightly"
1127411274
},
1127511275
"license": "Apache-2.0",
1127611276
"license_ids": [
@@ -17916,7 +17916,7 @@
1791617916
},
1791717917
"binary_crates": [],
1791817918
"workspace_members": {
17919-
"selenium-manager 0.4.19": "rust"
17919+
"selenium-manager 0.4.20-nightly": "rust"
1792017920
},
1792117921
"conditions": {
1792217922
"aarch64-apple-darwin": [

0 commit comments

Comments
 (0)