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
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'
Original file line number Diff line number Diff line change 1- SE_VERSION = "4.19.0 "
1+ SE_VERSION = "4.20.0-SNAPSHOT "
22TOOLS_JAVA_VERSION = "17"
Original file line number Diff line number Diff 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
4545BROWSER_VERSIONS = [
4646 "v85" ,
Original file line number Diff line number Diff line change 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.
Original file line number Diff line number Diff line change 1616# under the License.
1717
1818
19- __version__ = "4.19.0 "
19+ __version__ = "4.20.0.dev202403271845 "
Original file line number Diff line number Diff line change 4444from .wpewebkit .service import Service as WPEWebKitService # noqa
4545from .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__ = [
Original file line number Diff line number Diff line change 2727setup_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 (),
Original file line number Diff line number Diff line change 1919
2020module Selenium
2121 module WebDriver
22- VERSION = '4.19.0 '
22+ VERSION = '4.20.0.nightly '
2323 end # WebDriver
2424end # Selenium
Original file line number Diff line number Diff 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" ,
Original file line number Diff line number Diff line change 11{
2- "checksum": "c92c30dfcee338ee7a89723929f757bb27727238576facf2e007922d5f3b8643 ",
2+ "checksum": "429663180e806b5eded3d78e76d2e9fcf145a9daa6790b6faa598196d2c64103 ",
33 "crates": {
44 "addr2line 0.19.0": {
55 "name": "addr2line",
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": [
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": [
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": [
You can’t perform that action at this time.
0 commit comments