Skip to content

Commit 8c079cf

Browse files
author
Max Presman
committed
4.0.9
1 parent 57cae29 commit 8c079cf

File tree

4 files changed

+22
-10
lines changed

4 files changed

+22
-10
lines changed

.pubnub.yml

+7-1
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,14 @@
11
name: python
2-
version: 4.0.8
2+
version: 4.0.9
33
schema: 1
44
scm: github.com/pubnub/python
55
changelog:
6+
- version: v4.0.9
7+
date:
8+
changes:
9+
- type: bug
10+
text: Fix missing encoder for path elements
11+
- type: feature
612
- version: v4.0.8
713
date:
814
changes:

CHANGELOG.md

+13-7
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,17 @@
11

2+
## [v4.0.9](https://github.com/pubnub/python/tree/v4.0.9)
3+
4+
5+
[Full Changelog](https://github.com/pubnub/python/compare/v4.0.8...v4.0.9)
6+
7+
8+
9+
- 🐛Fix missing encoder for path elements
10+
- 🌟
11+
12+
13+
14+
215
## [v4.0.8](https://github.com/pubnub/python/tree/v4.0.8)
316

417

@@ -17,12 +30,10 @@
1730

1831

1932
- 🐛Handle interval presence messages gracefully if they do not contain a UUID.
20-
2133
- 🌟Support custom cryptography module when using GAE
2234

2335

2436

25-
2637
- ⭐designate the request thread as non-daemon to keep the SDK running.
2738

2839

@@ -46,19 +57,15 @@
4657
- ⭐new pubnub domain
4758

4859

49-
5060
- ⭐native demo app
5161

5262

53-
5463
- ⭐fixed HTTPAdapter config
5564

5665

57-
5866
- ⭐add a new Python 3.6.0 config to travis builds
5967

6068

61-
6269
- ⭐fix blocking Ctrl+C bug
6370

6471

@@ -92,7 +99,6 @@
9299
- ⭐Adjusting maximum pool size for requests installations
93100

94101

95-
96102
- ⭐Adding Publsher UUID
97103

98104

pubnub/pubnub_core.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232

3333
class PubNubCore:
3434
"""A base class for PubNub Python API implementations"""
35-
SDK_VERSION = "4.0.8"
35+
SDK_VERSION = "4.0.9"
3636
SDK_NAME = "PubNub-Python"
3737

3838
TIMESTAMP_DIVIDER = 1000

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
setup(
44
name='pubnub',
5-
version='4.0.8',
5+
version='4.0.9',
66
description='PubNub Real-time push service in the cloud',
77
author='PubNub',
88
author_email='[email protected]',

0 commit comments

Comments
 (0)