diff --git a/Rakefile b/Rakefile index b7c308429a116..07ba0d5a8e702 100644 --- a/Rakefile +++ b/Rakefile @@ -45,11 +45,11 @@ end verbose($DEBUG) def release_version - "3.3" + "3.4" end def version - "#{release_version}.1" + "#{release_version}.0" end ide_version = "2.8.0" diff --git a/SELENIUM_VERSION b/SELENIUM_VERSION index 1f86dec2bd090..c156caa7c6b58 100644 --- a/SELENIUM_VERSION +++ b/SELENIUM_VERSION @@ -1,2 +1,2 @@ -SE_VERSION = '3.3.1' +SE_VERSION = '3.4.0' diff --git a/dotnet/src/support/Properties/AssemblyInfo.cs b/dotnet/src/support/Properties/AssemblyInfo.cs index 68f188529893e..d1da0a9e44331 100644 --- a/dotnet/src/support/Properties/AssemblyInfo.cs +++ b/dotnet/src/support/Properties/AssemblyInfo.cs @@ -49,6 +49,6 @@ // Minor Version // Build Number // Revision -[assembly: AssemblyVersion("3.3.0.0")] -[assembly: AssemblyFileVersion("3.3.0.0")] -[assembly: AssemblyInformationalVersion("3.3.0")] +[assembly: AssemblyVersion("3.4.0.0")] +[assembly: AssemblyFileVersion("3.4.0.0")] +[assembly: AssemblyInformationalVersion("3.4.0")] diff --git a/dotnet/src/webdriver/Properties/AssemblyInfo.cs b/dotnet/src/webdriver/Properties/AssemblyInfo.cs index fb0f911a486c1..d21f3bc101d5f 100644 --- a/dotnet/src/webdriver/Properties/AssemblyInfo.cs +++ b/dotnet/src/webdriver/Properties/AssemblyInfo.cs @@ -49,6 +49,6 @@ // Minor Version // Build Number // Revision -[assembly: AssemblyVersion("3.3.0.0")] -[assembly: AssemblyFileVersion("3.3.0.0")] -[assembly: AssemblyInformationalVersion("3.3.0")] +[assembly: AssemblyVersion("3.4.0.0")] +[assembly: AssemblyFileVersion("3.4.0.0")] +[assembly: AssemblyInformationalVersion("3.4.0")] diff --git a/dotnet/src/webdriverbackedselenium/Properties/AssemblyInfo.cs b/dotnet/src/webdriverbackedselenium/Properties/AssemblyInfo.cs index f0dc2fd3de312..2ba1424ca0717 100644 --- a/dotnet/src/webdriverbackedselenium/Properties/AssemblyInfo.cs +++ b/dotnet/src/webdriverbackedselenium/Properties/AssemblyInfo.cs @@ -49,6 +49,6 @@ // Minor Version // Build Number // Revision -[assembly: AssemblyVersion("3.3.0.0")] -[assembly: AssemblyFileVersion("3.3.0.0")] -[assembly: AssemblyInformationalVersion("3.3.0")] +[assembly: AssemblyVersion("3.4.0.0")] +[assembly: AssemblyFileVersion("3.4.0.0")] +[assembly: AssemblyInformationalVersion("3.4.0")] diff --git a/javascript/firefox-driver/extension/install.rdf b/javascript/firefox-driver/extension/install.rdf index 28dba1ce6c792..1959ad0d4641a 100644 --- a/javascript/firefox-driver/extension/install.rdf +++ b/javascript/firefox-driver/extension/install.rdf @@ -3,7 +3,7 @@ fxdriver@googlecode.com - 3.3.0 + 3.4.0 2 Firefox WebDriver WebDriver implementation for Firefox diff --git a/javascript/node/selenium-webdriver/package.json b/javascript/node/selenium-webdriver/package.json index dfb557bf47ca4..7298713307a69 100644 --- a/javascript/node/selenium-webdriver/package.json +++ b/javascript/node/selenium-webdriver/package.json @@ -1,6 +1,6 @@ { "name": "selenium-webdriver", - "version": "3.3.0", + "version": "3.4.0", "description": "The official WebDriver JavaScript bindings from the Selenium project", "license": "Apache-2.0", "keywords": [ diff --git a/py/docs/source/conf.py b/py/docs/source/conf.py index 39afe6be2bd57..cd0d5be0ea651 100644 --- a/py/docs/source/conf.py +++ b/py/docs/source/conf.py @@ -55,7 +55,7 @@ # built documents. # # The short X.Y version. -version = '3.3' +version = '3.4' # The full version, including alpha/beta/rc tags. release = version diff --git a/py/docs/source/index.rst b/py/docs/source/index.rst index 90d75f49862d3..a46b27c84d49c 100644 --- a/py/docs/source/index.rst +++ b/py/docs/source/index.rst @@ -36,7 +36,7 @@ If you have `pip `_ on your system, you can simply install pip install -U selenium -Alternately, you can download the source distribution from `PyPI `_ (e.g. selenium-3.3.3.tar.gz), unarchive it, and run:: +Alternately, you can download the source distribution from `PyPI `_ (e.g. selenium-3.4.0.tar.gz), unarchive it, and run:: python setup.py install @@ -127,11 +127,11 @@ For normal WebDriver scripts (non-Remote), the Java server is not needed. However, to use Selenium Webdriver Remote or the legacy Selenium API (Selenium-RC), you need to also run the Selenium server. The server requires a Java Runtime Environment (JRE). -Download the server separately, from: http://selenium-release.storage.googleapis.com/3.3/selenium-server-standalone-3.3.1.jar +Download the server separately, from: http://selenium-release.storage.googleapis.com/3.4/selenium-server-standalone-3.4.0.jar Run the server from the command line:: - java -jar selenium-server-standalone-3.3.1.jar + java -jar selenium-server-standalone-3.4.0.jar Then run your Python client scripts. diff --git a/py/selenium/__init__.py b/py/selenium/__init__.py index 06daf0be5f027..c612b4c989afd 100644 --- a/py/selenium/__init__.py +++ b/py/selenium/__init__.py @@ -16,4 +16,4 @@ # under the License. -__version__ = "3.3.3" +__version__ = "3.4.0" diff --git a/py/selenium/webdriver/__init__.py b/py/selenium/webdriver/__init__.py index c2e8b3ad13115..09ef535f0d64f 100644 --- a/py/selenium/webdriver/__init__.py +++ b/py/selenium/webdriver/__init__.py @@ -32,4 +32,4 @@ from .common.touch_actions import TouchActions # noqa from .common.proxy import Proxy # noqa -__version__ = '3.3.3' +__version__ = '3.4.0' diff --git a/py/setup.py b/py/setup.py index c1a1947de6a45..716600af2865d 100755 --- a/py/setup.py +++ b/py/setup.py @@ -29,7 +29,7 @@ setup_args = { 'cmdclass': {'install': install}, 'name': 'selenium', - 'version': "3.3.3", + 'version': "3.4.0", 'license': 'Apache 2.0', 'description': 'Python bindings for Selenium', 'long_description': open(join(abspath(dirname(__file__)), "README.rst")).read(), diff --git a/rb/selenium-webdriver.gemspec b/rb/selenium-webdriver.gemspec index ff6b4e12eafa1..084ac6c8e34c6 100644 --- a/rb/selenium-webdriver.gemspec +++ b/rb/selenium-webdriver.gemspec @@ -5,7 +5,7 @@ raise "cwd must be #{root} when reading gemspec" if root != Dir.pwd Gem::Specification.new do |s| s.name = 'selenium-webdriver' - s.version = '3.3.0' + s.version = '3.4.0' s.authors = ['Alex Rodionov', 'Titus Fortner'] s.email = ['p0deje@gmail.com', 'titusfortner@gmail.com']