From bd4238e2220ddd58eeeca0227e0d12dfbb0ddbdf Mon Sep 17 00:00:00 2001 From: Andrews Medina Date: Sun, 21 Apr 2013 20:09:59 -0300 Subject: [PATCH] setup: bump to 0.5.2 --- VERSION | 2 +- docs/conf.py | 4 ++-- setup.py | 2 +- splinter/__init__.py | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/VERSION b/VERSION index 4b9fcbec1..cb0c939a9 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.5.1 +0.5.2 diff --git a/docs/conf.py b/docs/conf.py index d86b07458..a4dfe442d 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -50,9 +50,9 @@ # built documents. # # The short X.Y version. -version = '0.5.1' +version = '0.5.2' # The full version, including alpha/beta/rc tags. -release = '0.5.1' +release = '0.5.2' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/setup.py b/setup.py index 98873ae57..c656d9478 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ setup( name='splinter', - version='0.5.1', + version='0.5.2', description='browser abstraction for web acceptance testing', long_description=README, author='CobraTeam', diff --git a/splinter/__init__.py b/splinter/__init__.py index caeb55286..391d00396 100644 --- a/splinter/__init__.py +++ b/splinter/__init__.py @@ -2,5 +2,5 @@ # Use of this source code is governed by a BSD-style # license that can be found in the LICENSE file. -__version__ = '0.5.1' +__version__ = '0.5.2' from splinter.browser import Browser