File tree Expand file tree Collapse file tree 12 files changed +23
-18
lines changed
rb/lib/selenium/webdriver Expand file tree Collapse file tree 12 files changed +23
-18
lines changed Original file line number Diff line number Diff line change @@ -640,7 +640,12 @@ namespace :py do
640
640
# to start doing nightly builds.
641
641
new_version = old_version + ".dev#{ Time . now . strftime ( "%Y%m%d%H%M" ) } "
642
642
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
644
649
end
645
650
646
651
[ 'py/setup.py' ,
@@ -658,7 +663,7 @@ namespace :py do
658
663
text = File . read ( 'py/docs/source/conf.py' ) . gsub ( old_short_version , new_short_version )
659
664
File . open ( 'py/docs/source/conf.py' , "w" ) { |f | f . puts text }
660
665
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
662
667
end
663
668
664
669
desc 'Update Python Syntax'
Original file line number Diff line number Diff line change 1
- SE_VERSION = "4.19.0 "
1
+ SE_VERSION = "4.20.0-SNAPSHOT "
2
2
TOOLS_JAVA_VERSION = "17"
Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ compile_pip_requirements(
40
40
],
41
41
)
42
42
43
- SE_VERSION = "4.19.0 "
43
+ SE_VERSION = "4.20.0.dev202403271845 "
44
44
45
45
BROWSER_VERSIONS = [
46
46
"v85" ,
Original file line number Diff line number Diff line change 56
56
# built documents.
57
57
#
58
58
# The short X.Y version.
59
- version = '4.19 '
59
+ version = '4.20 '
60
60
# The full version, including alpha/beta/rc tags.
61
- release = '4.19.0 '
61
+ release = '4.20.0.dev202403271845 '
62
62
63
63
# The language for content autogenerated by Sphinx. Refer to documentation
64
64
# for a list of supported languages.
Original file line number Diff line number Diff line change 16
16
# under the License.
17
17
18
18
19
- __version__ = "4.19.0 "
19
+ __version__ = "4.20.0.dev202403271845 "
Original file line number Diff line number Diff line change 44
44
from .wpewebkit .service import Service as WPEWebKitService # noqa
45
45
from .wpewebkit .webdriver import WebDriver as WPEWebKit # noqa
46
46
47
- __version__ = "4.19.0 "
47
+ __version__ = "4.20.0.dev202403271845 "
48
48
49
49
# We need an explicit __all__ because the above won't otherwise be exported.
50
50
__all__ = [
Original file line number Diff line number Diff line change 27
27
setup_args = {
28
28
'cmdclass' : {'install' : install },
29
29
'name' : 'selenium' ,
30
- 'version' : "4.19.0 " ,
30
+ 'version' : "4.20.0.dev202403271845 " ,
31
31
'license' : 'Apache 2.0' ,
32
32
'description' : 'Python bindings for Selenium' ,
33
33
'long_description' : open (join (abspath (dirname (__file__ )), "README.rst" )).read (),
Original file line number Diff line number Diff line change 19
19
20
20
module Selenium
21
21
module WebDriver
22
- VERSION = '4.19.0 '
22
+ VERSION = '4.20.0.nightly '
23
23
end # WebDriver
24
24
end # Selenium
Original file line number Diff line number Diff line change @@ -77,7 +77,7 @@ rust_binary(
77
77
name = "selenium-manager" ,
78
78
srcs = ["src/main.rs" ],
79
79
edition = "2021" ,
80
- version = "0.4.19 " ,
80
+ version = "0.4.20-nightly " ,
81
81
visibility = ["//visibility:public" ],
82
82
deps = [
83
83
":selenium_manager" ,
Original file line number Diff line number Diff line change 1
1
{
2
- "checksum": "c92c30dfcee338ee7a89723929f757bb27727238576facf2e007922d5f3b8643 ",
2
+ "checksum": "429663180e806b5eded3d78e76d2e9fcf145a9daa6790b6faa598196d2c64103 ",
3
3
"crates": {
4
4
"addr2line 0.19.0": {
5
5
"name": "addr2line",
11135
11135
],
11136
11136
"license_file": "LICENSE"
11137
11137
},
11138
- "selenium-manager 0.4.19 ": {
11138
+ "selenium-manager 0.4.20-nightly ": {
11139
11139
"name": "selenium-manager",
11140
- "version": "0.4.19 ",
11140
+ "version": "0.4.20-nightly ",
11141
11141
"package_url": "https://github.com/SeleniumHQ/selenium",
11142
11142
"repository": null,
11143
11143
"targets": [
11270
11270
"selects": {}
11271
11271
},
11272
11272
"edition": "2021",
11273
- "version": "0.4.19 "
11273
+ "version": "0.4.20-nightly "
11274
11274
},
11275
11275
"license": "Apache-2.0",
11276
11276
"license_ids": [
17916
17916
},
17917
17917
"binary_crates": [],
17918
17918
"workspace_members": {
17919
- "selenium-manager 0.4.19 ": "rust"
17919
+ "selenium-manager 0.4.20-nightly ": "rust"
17920
17920
},
17921
17921
"conditions": {
17922
17922
"aarch64-apple-darwin": [
You can’t perform that action at this time.
0 commit comments