aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDevendra2014-06-16 23:40:07 +0530
committerDevendra2014-06-16 23:40:07 +0530
commit819dbedf0904b81e866ea6d27219608167d8b8ca (patch)
treefc54b2d8b4d8c28ecbc5a700c80da49f68e8d269
parent6e67486e8e2333e6f7b0128df9bc4f1da8db2bfc (diff)
downloadpubnub-python-819dbedf0904b81e866ea6d27219608167d8b8ca.tar.bz2
version changes
-rw-r--r--Pubnub.py5
-rw-r--r--VERSION2
-rw-r--r--change_version.sh1
-rw-r--r--python/README.md2
-rw-r--r--python/examples/pubnub-console/setup.py4
-rw-r--r--setup.py4
6 files changed, 8 insertions, 10 deletions
diff --git a/Pubnub.py b/Pubnub.py
index 5c19109..e39dd06 100644
--- a/Pubnub.py
+++ b/Pubnub.py
@@ -7,7 +7,7 @@
## http://www.pubnub.com/
## -----------------------------------
-## PubNub 3.5.0-beta Real-time Push Cloud API
+## PubNub 3.5.0 Real-time Push Cloud API
## -----------------------------------
@@ -218,6 +218,7 @@ class PubnubBase(object):
"""
self.origin = origin
+ self.version = '3.5.0'
self.limit = 1800
self.publish_key = publish_key
self.subscribe_key = subscribe_key
@@ -850,7 +851,6 @@ class PubnubCoreAsync(PubnubBase):
self.subscriptions = {}
self.timetoken = 0
self.last_timetoken = 0
- self.version = '3.3.4'
self.accept_encoding = 'gzip'
self.SUB_RECEIVER = None
self._connect = None
@@ -1164,7 +1164,6 @@ class PubnubCore(PubnubCoreAsync):
self.subscriptions = {}
self.timetoken = 0
- self.version = '3.4'
self.accept_encoding = 'gzip'
def subscribe_sync(self, channel, callback, timetoken=0):
diff --git a/VERSION b/VERSION
index fa7adc7..1545d96 100644
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-3.3.5
+3.5.0
diff --git a/change_version.sh b/change_version.sh
deleted file mode 100644
index 5ea7a63..0000000
--- a/change_version.sh
+++ /dev/null
@@ -1 +0,0 @@
-find -name "Pubnub*py" | xargs sed -i "s/PubNub\ [0-9]\.[0-9]\.[0-9]/PubNub\ `cat VERSION`/g"
diff --git a/python/README.md b/python/README.md
index 68065f0..7232756 100644
--- a/python/README.md
+++ b/python/README.md
@@ -1,4 +1,4 @@
-## PubNub 3.3 Web Data Push Cloud-hosted API - PYTHON
+## PubNub 3.5.0 Web Data Push Cloud-hosted API - PYTHON
#### www.pubnub.com - PubNub Web Data Push Service in the Cloud.
#### http://github.com/pubnub/python
diff --git a/python/examples/pubnub-console/setup.py b/python/examples/pubnub-console/setup.py
index c08be33..a9fa506 100644
--- a/python/examples/pubnub-console/setup.py
+++ b/python/examples/pubnub-console/setup.py
@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
setup(
name='pubnub-console',
- version='3.5.0-beta-1',
+ version='3.5.0',
description='PubNub Developer Console',
author='Stephen Blum',
author_email='support@pubnub.com',
@@ -19,7 +19,7 @@ setup(
'Topic :: Software Development :: Libraries :: Python Modules',
),
install_requires=[
- 'pubnub==3.5.0-beta-1',
+ 'pubnub>=3.5.0',
'cmd2>=0.6.7',
'pygments >= 1.6'
],
diff --git a/setup.py b/setup.py
index aec2887..ee01836 100644
--- a/setup.py
+++ b/setup.py
@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
setup(
name='pubnub',
- version='3.5.0-beta-1',
+ version='3.5.0',
description='PubNub Real-time push service in the cloud',
author='Stephen Blum',
author_email='support@pubnub.com',
@@ -20,7 +20,7 @@ setup(
),
install_requires=[
'pycrypto>=2.6.1',
- 'requests'
+ 'requests>=2.3.0'
],
zip_safe=False,
)