Skip to content

Commit

Permalink
Bumping version numbers
Browse files Browse the repository at this point in the history
  • Loading branch information
AutomatedTester committed Apr 10, 2013
1 parent 32df135 commit 99c4977
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 8 deletions.
6 changes: 6 additions & 0 deletions py/CHANGES
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
Selenium 2.32
* Support for FF20 Native Events
* Python 3 support
* Misc Python 3 patches
* Allow easy FirefoxBinary subclassing

Selenium 2.31
* Support for FF19 native events
* web element equality is now in conformance with other language bindings
Expand Down
4 changes: 2 additions & 2 deletions py/README
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,10 @@ Python Client
Java Server
-----------

Download the server from http://selenium.googlecode.com/files/selenium-server-standalone-2.31.0.jar
Download the server from http://selenium.googlecode.com/files/selenium-server-standalone-2.32.0.jar
::

java -jar selenium-server-standalone-2.31.0.jar
java -jar selenium-server-standalone-2.32.0.jar

Example
=======
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 @@ -26,10 +26,10 @@ Python Client
Java Server
-----------

Download the server from http://selenium.googlecode.com/files/selenium-server-standalone-2.31.0.jar
Download the server from http://selenium.googlecode.com/files/selenium-server-standalone-2.32.0.jar
::

java -jar selenium-server-standalone-2.31.0.jar
java -jar selenium-server-standalone-2.32.0.jar

Example
=======
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.31.0"
__version__ = "2.32.0"
2 changes: 1 addition & 1 deletion py/selenium/webdriver/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,4 @@
from .common.touch_actions import TouchActions
from .common.proxy import Proxy

__version__ = '2.31.0'
__version__ = '2.32.0'
3 changes: 1 addition & 2 deletions 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.31.0",
'version':"2.32.0",
'description':'Python bindings for Selenium',
'long_description':open(join(abspath(dirname(__file__)), "py", "README")).read(),
'url':'http://code.google.com/p/selenium/',
Expand All @@ -43,7 +43,6 @@
'Programming Language :: Python',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.1',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3'],
'package_dir':{
Expand Down

0 comments on commit 99c4977

Please sign in to comment.