diff options
| author | Devendra | 2014-06-16 23:40:07 +0530 | 
|---|---|---|
| committer | Devendra | 2014-06-16 23:40:07 +0530 | 
| commit | 819dbedf0904b81e866ea6d27219608167d8b8ca (patch) | |
| tree | fc54b2d8b4d8c28ecbc5a700c80da49f68e8d269 | |
| parent | 6e67486e8e2333e6f7b0128df9bc4f1da8db2bfc (diff) | |
| download | pubnub-python-819dbedf0904b81e866ea6d27219608167d8b8ca.tar.bz2 | |
version changes
| -rw-r--r-- | Pubnub.py | 5 | ||||
| -rw-r--r-- | VERSION | 2 | ||||
| -rw-r--r-- | change_version.sh | 1 | ||||
| -rw-r--r-- | python/README.md | 2 | ||||
| -rw-r--r-- | python/examples/pubnub-console/setup.py | 4 | ||||
| -rw-r--r-- | setup.py | 4 | 
6 files changed, 8 insertions, 10 deletions
| @@ -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): @@ -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'      ], @@ -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,  ) | 
