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.
44The format is based on [ Keep a Changelog] ( http://keepachangelog.com/en/1.0.0/ )
55and this project adheres to [ Semantic Versioning] ( http://semver.org/spec/v2.0.0.html ) .
66
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
812#### Changed
913 * Devo.common get_log() has more flags for better customization
1014
Original file line number Diff line number Diff line change 11
22[ ![ 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 )
33
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/ )
55
66
77# Devo Python SDK
Original file line number Diff line number Diff line change 11__description__ = 'Devo Python Library.'
22__url__ = 'http://www.devo.com'
3- __version__ = "2.1.0 "
3+ __version__ = "2.1.1 "
44__author__ = 'Devo'
55__author_email__ = 'support@devo.com'
66__license__ = 'MIT'
Original file line number Diff line number Diff line change @@ -239,9 +239,6 @@ def close(self):
239239 """
240240 Forces socket closure
241241 """
242- if self .buffer .text_buffer :
243- self .flush_buffer ()
244-
245242 if self .socket is not None :
246243 self .socket .close ()
247244 self .socket = None
You can’t perform that action at this time.
0 commit comments