Skip to content

Commit e10426f

Browse files
seba-alnClient Engineering Bot
andauthored
Fix missing entities module (#131)
* Fix missing entities module * PubNub SDK v6.4.1 release. Co-authored-by: Client Engineering Bot <60980775+Client Engineering [email protected]>
1 parent 2941205 commit e10426f

File tree

7 files changed

+17
-6
lines changed

7 files changed

+17
-6
lines changed

.pubnub.yml

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: python
2-
version: 6.4.0
2+
version: 6.4.1
33
schema: 1
44
scm: github.com/pubnub/python
55
sdks:
@@ -18,7 +18,7 @@ sdks:
1818
distributions:
1919
- distribution-type: library
2020
distribution-repository: package
21-
package-name: pubnub-6.4.0
21+
package-name: pubnub-6.4.1
2222
location: https://pypi.org/project/pubnub/
2323
supported-platforms:
2424
supported-operating-systems:
@@ -97,8 +97,8 @@ sdks:
9797
-
9898
distribution-type: library
9999
distribution-repository: git release
100-
package-name: pubnub-6.4.0
101-
location: https://github.com/pubnub/python/releases/download/v6.4.0/pubnub-6.4.0.tar.gz
100+
package-name: pubnub-6.4.1
101+
location: https://github.com/pubnub/python/releases/download/v6.4.1/pubnub-6.4.1.tar.gz
102102
supported-platforms:
103103
supported-operating-systems:
104104
Linux:
@@ -169,6 +169,11 @@ sdks:
169169
license-url: https://github.com/aio-libs/aiohttp/blob/master/LICENSE.txt
170170
is-required: Required
171171
changelog:
172+
- date: 2022-07-14
173+
version: v6.4.1
174+
changes:
175+
- type: bug
176+
text: "This addresses the issue #130 - a problem with importing module."
172177
- date: 2022-07-13
173178
version: v6.4.0
174179
changes:

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## v6.4.1
2+
July 14 2022
3+
4+
#### Fixed
5+
- This addresses the issue #130 - a problem with importing module.
6+
17
## v6.4.0
28
July 13 2022
39

pubnub/endpoints/entities/__init__.py

Whitespace-only changes.

pubnub/endpoints/entities/membership/__init__.py

Whitespace-only changes.

pubnub/models/consumer/entities/__init__.py

Whitespace-only changes.

pubnub/pubnub_core.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@
8383

8484
class PubNubCore:
8585
"""A base class for PubNub Python API implementations"""
86-
SDK_VERSION = "6.4.0"
86+
SDK_VERSION = "6.4.1"
8787
SDK_NAME = "PubNub-Python"
8888

8989
TIMESTAMP_DIVIDER = 1000

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

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

0 commit comments

Comments
 (0)