Skip to content

Commit 84479c5

Browse files
seba-alnClient Engineering Bot
andauthored
fix: Remove unwanted output while calling fetch_messages (#111)
* fix: Remove unwanted output while calling `fetch_messages` * PubNub SDK v6.0.1 release. Co-authored-by: Client Engineering Bot <60980775+Client Engineering Bot@users.noreply.github.com>
1 parent 0c8555a commit 84479c5

File tree

5 files changed

+17
-7
lines changed

5 files changed

+17
-7
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.0.0
2+
version: 6.0.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.0.0
21+
package-name: pubnub-6.0.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.0.0
101-
location: https://github.com/pubnub/python/releases/download/v6.0.0/pubnub-6.0.0.tar.gz
100+
package-name: pubnub-6.0.1
101+
location: https://github.com/pubnub/python/releases/download/v6.0.1/pubnub-6.0.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-02-01
173+
version: v6.0.1
174+
changes:
175+
- type: bug
176+
text: "Remove unwanted output while calling `fetch_messages`."
172177
- date: 2022-01-13
173178
version: v6.0.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.0.1
2+
February 01 2022
3+
4+
#### Fixed
5+
- Remove unwanted output while calling `fetch_messages`.
6+
17
## v6.0.0
28
January 13 2022
39

pubnub/models/consumer/history.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,6 @@ def __str__(self):
6565
@classmethod
6666
def from_json(cls, json_input, include_message_actions=False, start_timetoken=None, end_timetoken=None):
6767
channels = {}
68-
print(json_input['channels'])
6968

7069
for key, entry in json_input['channels'].items():
7170
channels[key] = []

pubnub/pubnub_core.py

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

6666
class PubNubCore:
6767
"""A base class for PubNub Python API implementations"""
68-
SDK_VERSION = "6.0.0"
68+
SDK_VERSION = "6.0.1"
6969
SDK_NAME = "PubNub-Python"
7070

7171
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.0.0',
5+
version='6.0.1',
66
description='PubNub Real-time push service in the cloud',
77
author='PubNub',
88
author_email='support@pubnub.com',

0 commit comments

Comments
 (0)