Skip to content

Commit

Permalink
bumping to 2.50.1 release, updating changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
lukeis committed Jan 29, 2016
1 parent 1504523 commit d7fc91b
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ end
verbose($DEBUG)

def version
"2.50.0"
"2.50.1"
end
ide_version = "2.8.0"

Expand Down
10 changes: 10 additions & 0 deletions java/CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
v2.50.1
=======

* add a way to add to the list of capabilities to consider to the default capability matcher
* Grid: Fixing timeout issue again... Why isn't it covered by tests? A rhetorical question...
* Java: Improving handling of marionette errors
* Java: Replacing ByteArrayOutputStream with CircularOutputStream to prevent OOM exception. Fixes issue #427
* Java: Moving CircularOutputStream to another package (it's an internal class so no need to create a copy)
* fix #1562

v2.50.0
=======

Expand Down
4 changes: 2 additions & 2 deletions java/server/src/org/openqa/selenium/server/VERSION.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
selenium.rc.version=2.50
selenium.rc.revision=.0
selenium.rc.revision=.1
selenium.core.version=2.50
selenium.core.revision=.0
selenium.core.revision=.1
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>[email protected]</em:id>
<em:version>2.50.0</em:version>
<em:version>2.50.1</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/selenium-core/scripts/selenium-version.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,6 @@
// under the License.

Selenium.version = "2.50";
Selenium.revision = ".0";
Selenium.revision = ".1";

window.top.document.title += " v" + Selenium.version + Selenium.revision;

0 comments on commit d7fc91b

Please sign in to comment.