File tree Expand file tree Collapse file tree 4 files changed +7
-6
lines changed Expand file tree Collapse file tree 4 files changed +7
-6
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,11 @@ All notable changes to this project will be documented in this file.
4
4
The format is based on [ Keep a Changelog] ( http://keepachangelog.com/en/1.0.0/ )
5
5
and this project adheres to [ Semantic Versioning] ( http://semver.org/spec/v2.0.0.html ) .
6
6
7
- ## [ 2.1.0] - 2019-01-23
7
+ ## [ 2.1.1] - 2019-01-29
8
+ #### Fixed
9
+ * Problems with recursion depth when zipped send has problems with Socket.
10
+
11
+ ## [ 2.1.0] - 2019-01-28
8
12
#### Changed
9
13
* Devo.common get_log() has more flags for better customization
10
14
Original file line number Diff line number Diff line change 1
1
2
2
[ ![ master Build Status] ( https://travis-ci.com/DevoInc/python-sdk.svg?branch=master )] ( https://travis-ci.com/DevoInc/python-sdk ) [ ![ LICENSE] ( https://img.shields.io/dub/l/vibe-d.svg )] ( https://github.com/DevoInc/python-sdk/blob/master/LICENSE )
3
3
4
- [ ![ wheel] ( https://img.shields.io/badge/wheel-yes-brightgreen.svg )] ( https://pypi.org/project/devo-sdk/ ) [ ![ version] ( https://img.shields.io/badge/version-2.1.0 -blue.svg )] ( https://pypi.org/project/devo-sdk/ ) [ ![ python] ( https://img.shields.io/badge/python-2.7%20%7C%203.3%20%7C%203.4%20%7C%203.5%20%7C%203.6%20%7C%203.7-blue.svg )] ( https://pypi.org/project/devo-sdk/ )
4
+ [ ![ wheel] ( https://img.shields.io/badge/wheel-yes-brightgreen.svg )] ( https://pypi.org/project/devo-sdk/ ) [ ![ version] ( https://img.shields.io/badge/version-2.1.1 -blue.svg )] ( https://pypi.org/project/devo-sdk/ ) [ ![ python] ( https://img.shields.io/badge/python-2.7%20%7C%203.3%20%7C%203.4%20%7C%203.5%20%7C%203.6%20%7C%203.7-blue.svg )] ( https://pypi.org/project/devo-sdk/ )
5
5
6
6
7
7
# Devo Python SDK
Original file line number Diff line number Diff line change 1
1
__description__ = 'Devo Python Library.'
2
2
__url__ = 'http://www.devo.com'
3
- __version__ = "2.1.0 "
3
+ __version__ = "2.1.1 "
4
4
__author__ = 'Devo'
5
5
__author_email__ = 'support@devo.com'
6
6
__license__ = 'MIT'
Original file line number Diff line number Diff line change @@ -239,9 +239,6 @@ def close(self):
239
239
"""
240
240
Forces socket closure
241
241
"""
242
- if self .buffer .text_buffer :
243
- self .flush_buffer ()
244
-
245
242
if self .socket is not None :
246
243
self .socket .close ()
247
244
self .socket = None
You can’t perform that action at this time.
0 commit comments