Skip to content

Commit d7fc91b

Browse files
committed
bumping to 2.50.1 release, updating changelog
1 parent 1504523 commit d7fc91b

File tree

5 files changed

+15
-5
lines changed

5 files changed

+15
-5
lines changed

Rakefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ end
5050
verbose($DEBUG)
5151

5252
def version
53-
"2.50.0"
53+
"2.50.1"
5454
end
5555
ide_version = "2.8.0"
5656

java/CHANGELOG

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
v2.50.1
2+
=======
3+
4+
* add a way to add to the list of capabilities to consider to the default capability matcher
5+
* Grid: Fixing timeout issue again... Why isn't it covered by tests? A rhetorical question...
6+
* Java: Improving handling of marionette errors
7+
* Java: Replacing ByteArrayOutputStream with CircularOutputStream to prevent OOM exception. Fixes issue #427
8+
* Java: Moving CircularOutputStream to another package (it's an internal class so no need to create a copy)
9+
* fix #1562
10+
111
v2.50.0
212
=======
313

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
selenium.rc.version=2.50
2-
selenium.rc.revision=.0
2+
selenium.rc.revision=.1
33
selenium.core.version=2.50
4-
selenium.core.revision=.0
4+
selenium.core.revision=.1

javascript/firefox-driver/extension/install.rdf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
<Description about="urn:mozilla:install-manifest">
55
<em:id>[email protected]</em:id>
6-
<em:version>2.50.0</em:version>
6+
<em:version>2.50.1</em:version>
77
<em:type>2</em:type>
88
<em:name>Firefox WebDriver</em:name>
99
<em:description>WebDriver implementation for Firefox</em:description>

javascript/selenium-core/scripts/selenium-version.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,6 @@
1616
// under the License.
1717

1818
Selenium.version = "2.50";
19-
Selenium.revision = ".0";
19+
Selenium.revision = ".1";
2020

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

0 commit comments

Comments
 (0)