Skip to content

Commit

Permalink
bumping version numbers for java / py in prep for 2.37
Browse files Browse the repository at this point in the history
  • Loading branch information
lukeis committed Oct 18, 2013
1 parent 3ef5940 commit 44463f4
Show file tree
Hide file tree
Showing 10 changed files with 20 additions and 13 deletions.
2 changes: 1 addition & 1 deletion Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ end
verbose($DEBUG)

def version
"2.36.0"
"2.37.0"
end
ide_version = "1.10.0"

Expand Down
4 changes: 4 additions & 0 deletions java/CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
v2.37.0
=======
* Fix Firefox native event support on Linux for 23 & 24.

v2.36.0
=======
WebDriver:
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.36
selenium.rc.version=2.37
selenium.rc.revision=.0
selenium.core.version=2.36
selenium.core.version=2.37
selenium.core.revision=.0
2 changes: 1 addition & 1 deletion javascript/selenium-core/scripts/selenium-version.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Selenium.version = "2.36";
Selenium.version = "2.37";
Selenium.revision = ".0";

window.top.document.title += " v" + Selenium.version + Selenium.revision;
Expand Down
3 changes: 3 additions & 0 deletions py/CHANGES
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
Selenium 2.37
* repackage with fix for Firefox native events on Linux

Selenium 2.36
* Added Safari WebDriver. Fixes issue 5352.
* fix platform for safari caps
Expand Down
6 changes: 3 additions & 3 deletions py/README
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ If you have `pip <http://www.pip-installer.org>`_ on your system, you can simply

pip install -U selenium

Alternately, you can download the source distribution from `PyPI <http://pypi.python.org/pypi/selenium>`_ (e.g. selenium-2.36.tar.gz), unarchive it, and run::
Alternately, you can download the source distribution from `PyPI <http://pypi.python.org/pypi/selenium>`_ (e.g. selenium-2.37.tar.gz), unarchive it, and run::

python setup.py install

Expand Down 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.googlecode.com/files/selenium-server-standalone-2.36.0.jar
Download the server separately, from: http://selenium.googlecode.com/files/selenium-server-standalone-2.37.0.jar

Run the server from the command line::

java -jar selenium-server-standalone-2.36.0.jar
java -jar selenium-server-standalone-2.37.0.jar

Then run your Python client scripts.

Expand Down
6 changes: 3 additions & 3 deletions py/docs/source/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ If you have `pip <http://www.pip-installer.org>`_ on your system, you can simply
pip install -U selenium

Alternately, you can download the source distribution from `PyPI <http://pypi.python.org/pypi/selenium>`_ (e.g. selenium-2.36.tar.gz), unarchive it, and run::
Alternately, you can download the source distribution from `PyPI <http://pypi.python.org/pypi/selenium>`_ (e.g. selenium-2.37.tar.gz), unarchive it, and run::

python setup.py install

Expand Down 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.googlecode.com/files/selenium-server-standalone-2.36.0.jar
Download the server separately, from: http://selenium.googlecode.com/files/selenium-server-standalone-2.37.0.jar

Run the server from the command line::

java -jar selenium-server-standalone-2.36.0.jar
java -jar selenium-server-standalone-2.37.0.jar

Then run your Python client scripts.

Expand Down
2 changes: 1 addition & 1 deletion py/selenium/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@
from selenium import selenium


__version__ = "2.36.0"
__version__ = "2.37.0"
2 changes: 1 addition & 1 deletion py/selenium/webdriver/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,4 @@
from .common.touch_actions import TouchActions
from .common.proxy import Proxy

__version__ = '2.36.0'
__version__ = '2.37.0'
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
setup_args = {
'cmdclass':{'install': install},
'name':'selenium',
'version':"2.36.0",
'version':"2.37.0",
'description':'Python bindings for Selenium',
'long_description':open(join(abspath(dirname(__file__)), "py", "README")).read(),
'url':'http://code.google.com/p/selenium/',
Expand Down

0 comments on commit 44463f4

Please sign in to comment.