Skip to content

Commit

Permalink
Bump version number to 3.0.0
Browse files Browse the repository at this point in the history
Because the next release should be the 3.0 final. Not sure
we're there yet, but I think we're close :)
  • Loading branch information
shs96c committed Oct 5, 2016
1 parent f1daf66 commit 19b82a8
Show file tree
Hide file tree
Showing 11 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ def release_version
end

def version
"#{release_version}.0-beta4"
"#{release_version}.0"
end

ide_version = "2.8.0"
Expand Down
2 changes: 1 addition & 1 deletion SELENIUM_VERSION
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
SE_VERSION = '3.0.0-beta4'
SE_VERSION = '3.0.0'

2 changes: 1 addition & 1 deletion dotnet/src/core/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,4 @@
// Revision
[assembly: AssemblyVersion("3.0.0.0")]
[assembly: AssemblyFileVersion("3.0.0.0")]
[assembly: AssemblyInformationalVersion("3.0.0-beta4")]
[assembly: AssemblyInformationalVersion("3.0.0")]
2 changes: 1 addition & 1 deletion dotnet/src/support/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -51,4 +51,4 @@
// Revision
[assembly: AssemblyVersion("3.0.0.0")]
[assembly: AssemblyFileVersion("3.0.0.0")]
[assembly: AssemblyInformationalVersion("3.0.0-beta4")]
[assembly: AssemblyInformationalVersion("3.0.0")]
2 changes: 1 addition & 1 deletion dotnet/src/webdriver/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -51,4 +51,4 @@
// Revision
[assembly: AssemblyVersion("3.0.0.0")]
[assembly: AssemblyFileVersion("3.0.0.0")]
[assembly: AssemblyInformationalVersion("3.0.0-beta4")]
[assembly: AssemblyInformationalVersion("3.0.0")]
Original file line number Diff line number Diff line change
Expand Up @@ -51,4 +51,4 @@
// Revision
[assembly: AssemblyVersion("3.0.0.0")]
[assembly: AssemblyFileVersion("3.0.0.0")]
[assembly: AssemblyInformationalVersion("3.0.0-beta4")]
[assembly: AssemblyInformationalVersion("3.0.0")]
2 changes: 1 addition & 1 deletion javascript/firefox-driver/extension/install.rdf
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

<Description about="urn:mozilla:install-manifest">
<em:id>fxdriver@googlecode.com</em:id>
<em:version>3.0.0-beta2</em:version>
<em:version>3.0.0</em:version>
<em:type>2</em:type>
<em:name>Firefox WebDriver</em:name>
<em:description>WebDriver implementation for Firefox</em:description>
Expand Down
2 changes: 1 addition & 1 deletion javascript/node/selenium-webdriver/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "selenium-webdriver",
"version": "3.0.0-beta-3",
"version": "3.0.0",
"description": "The official WebDriver JavaScript bindings from the Selenium project",
"license": "Apache-2.0",
"keywords": [
Expand Down
4 changes: 2 additions & 2 deletions py/README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -107,11 +107,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-beta4/selenium-server-standalone-3.0.0-beta4.jar
Download the server separately, from: http://selenium-release.storage.googleapis.com/3.0/selenium-server-standalone-3.0.0.jar

Run the server from the command line::

java -jar selenium-server-standalone-3.0.0-beta4.jar
java -jar selenium-server-standalone-3.0.0.jar

Then run your Python client scripts.

Expand Down
4 changes: 2 additions & 2 deletions py/docs/source/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -107,11 +107,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-beta4/selenium-server-standalone-3.0.0-beta4.jar
Download the server separately, from: http://selenium-release.storage.googleapis.com/3.0/selenium-server-standalone-3.0.0.jar

Run the server from the command line::

java -jar selenium-server-standalone-3.0.0-beta4.jar
java -jar selenium-server-standalone-3.0.0.jar

Then run your Python client scripts.

Expand Down
2 changes: 1 addition & 1 deletion rb/selenium-webdriver.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -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.0.beta4.0'
s.version = '3.0.0'

s.authors = ['Alex Rodionov', 'Titus Fortner']
s.email = ['p0deje@gmail.com', 'titusfortner@gmail.com']
Expand Down

0 comments on commit 19b82a8

Please sign in to comment.