diff --git a/Rakefile b/Rakefile index 9f528ea4e2a24..b4ee01b9ec791 100644 --- a/Rakefile +++ b/Rakefile @@ -45,11 +45,11 @@ end verbose($DEBUG) def release_version - "3.0" + "3.1" end def version - "#{release_version}.1" + "#{release_version}.0" end ide_version = "2.8.0" diff --git a/SELENIUM_VERSION b/SELENIUM_VERSION index fb02b0f599d30..61ce5b17938bc 100644 --- a/SELENIUM_VERSION +++ b/SELENIUM_VERSION @@ -1,2 +1,2 @@ -SE_VERSION = '3.0.1' +SE_VERSION = '3.1.0' diff --git a/dotnet/src/core/Properties/AssemblyInfo.cs b/dotnet/src/core/Properties/AssemblyInfo.cs index 9d5322a7784d9..a4c4554b04aab 100644 --- a/dotnet/src/core/Properties/AssemblyInfo.cs +++ b/dotnet/src/core/Properties/AssemblyInfo.cs @@ -21,6 +21,6 @@ // Minor Version // Build Number // Revision -[assembly: AssemblyVersion("3.0.1.0")] -[assembly: AssemblyFileVersion("3.0.1.0")] -[assembly: AssemblyInformationalVersion("3.0.1")] +[assembly: AssemblyVersion("3.1.0.0")] +[assembly: AssemblyFileVersion("3.1.0.0")] +[assembly: AssemblyInformationalVersion("3.1.0")] diff --git a/dotnet/src/support/Properties/AssemblyInfo.cs b/dotnet/src/support/Properties/AssemblyInfo.cs index 7e3ed9e216f8f..fa13cfe933b3a 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.0.1.0")] -[assembly: AssemblyFileVersion("3.0.1.0")] -[assembly: AssemblyInformationalVersion("3.0.1")] +[assembly: AssemblyVersion("3.1.0.0")] +[assembly: AssemblyFileVersion("3.1.0.0")] +[assembly: AssemblyInformationalVersion("3.1.0")] diff --git a/dotnet/src/webdriver/Properties/AssemblyInfo.cs b/dotnet/src/webdriver/Properties/AssemblyInfo.cs index 899fa1c2894e0..c54193035e1e1 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.0.1.0")] -[assembly: AssemblyFileVersion("3.0.1.0")] -[assembly: AssemblyInformationalVersion("3.0.1")] +[assembly: AssemblyVersion("3.1.0.0")] +[assembly: AssemblyFileVersion("3.1.0.0")] +[assembly: AssemblyInformationalVersion("3.1.0")] diff --git a/dotnet/src/webdriverbackedselenium/Properties/AssemblyInfo.cs b/dotnet/src/webdriverbackedselenium/Properties/AssemblyInfo.cs index 172549c77c9f8..8821ab1411dae 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.0.1.0")] -[assembly: AssemblyFileVersion("3.0.1.0")] -[assembly: AssemblyInformationalVersion("3.0.1")] +[assembly: AssemblyVersion("3.1.0.0")] +[assembly: AssemblyFileVersion("3.1.0.0")] +[assembly: AssemblyInformationalVersion("3.1.0")] diff --git a/javascript/firefox-driver/extension/install.rdf b/javascript/firefox-driver/extension/install.rdf index c3df8c7c53a6c..1d6ed79df2bd6 100644 --- a/javascript/firefox-driver/extension/install.rdf +++ b/javascript/firefox-driver/extension/install.rdf @@ -3,7 +3,7 @@ fxdriver@googlecode.com - 3.0.1 + 3.1.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 5c3935833b72b..904fec728d969 100644 --- a/javascript/node/selenium-webdriver/package.json +++ b/javascript/node/selenium-webdriver/package.json @@ -1,6 +1,6 @@ { "name": "selenium-webdriver", - "version": "3.0.1", + "version": "3.1.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 310cc4e5efbd1..756bbe2250477 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.0' +version = '3.1' # 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 52ba9344a245e..c26115eb69543 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.0.2.tar.gz), unarchive it, and run:: +Alternately, you can download the source distribution from `PyPI `_ (e.g. selenium-3.1.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.0/selenium-server-standalone-3.0.0.jar +Download the server separately, from: http://selenium-release.storage.googleapis.com/3.1/selenium-server-standalone-3.1.0.jar Run the server from the command line:: - java -jar selenium-server-standalone-3.0.0.jar + java -jar selenium-server-standalone-3.1.0.jar Then run your Python client scripts. diff --git a/py/selenium/__init__.py b/py/selenium/__init__.py index 4ebc181849c5f..72fd03e8a6881 100644 --- a/py/selenium/__init__.py +++ b/py/selenium/__init__.py @@ -16,4 +16,4 @@ # under the License. -__version__ = "3.0.2" +__version__ = "3.1.0" diff --git a/py/selenium/webdriver/__init__.py b/py/selenium/webdriver/__init__.py index c24f0d9339efa..b34e5516f4a79 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.0.2' +__version__ = '3.1.0' diff --git a/py/setup.py b/py/setup.py index 6ffcd1719b798..6bdf2d6f2afb5 100755 --- a/py/setup.py +++ b/py/setup.py @@ -29,7 +29,7 @@ setup_args = { 'cmdclass': {'install': install}, 'name': 'selenium', - 'version': "3.0.2", + 'version': "3.1.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 077108b63f959..072f992e59c55 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.0.7' + s.version = '3.1.0' s.authors = ['Alex Rodionov', 'Titus Fortner'] s.email = ['p0deje@gmail.com', 'titusfortner@gmail.com']