From 67702dbc46d926b5d94c2e171df7e140880b55bb Mon Sep 17 00:00:00 2001 From: IceArmy Date: Sun, 26 Jun 2011 18:38:15 -0700 Subject: [PATCH] Bump version. --- python/pyphantomjs/utils.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/python/pyphantomjs/utils.py b/python/pyphantomjs/utils.py index 60c03b76..ad406e86 100644 --- a/python/pyphantomjs/utils.py +++ b/python/pyphantomjs/utils.py @@ -29,8 +29,9 @@ from csconverter import CSConverter from plugincontroller import Bunch, do_action -version_major, version_minor, version_patch = (1, 2, 0) +version_major, version_minor, version_patch = (1, 3, 0) version = '%d.%d.%d' % (version_major, version_minor, version_patch) +is_stable = False license = ''' PyPhantomJS Version %s @@ -49,7 +50,7 @@ license = ''' You should have received a copy of the GNU General Public License along with this program. If not, see . -''' % version +''' % (version if is_stable else version + ' (development)') def argParser():