Skip to content

Commit 341c0c1

Browse files
author
Alexey Gadzhiev
committed
Changes for new release
1 parent 0d3019c commit 341c0c1

File tree

4 files changed

+8
-3
lines changed

4 files changed

+8
-3
lines changed

debian/changelog

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
tarantool-python (0.6.4-0) unstable; urgency=medium
2+
3+
Release for PyPI which made Windows work again
4+
5+
-- Alexey Gadzhiev <[email protected]> Tue, 11 Apr 2017 17:23:33 +0300
6+
17
tarantool-python (0.6.3-0) unstable; urgency=medium
28

39
Release for PyPI with fix for 1.10.x Tarantool version

rpm/tarantool-python.spec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Summary: Python client library for Tarantool Database
22
Name: tarantool-python
3-
Version: 0.6.3
3+
Version: 0.6.4
44
Release: 1%{?dist}
55
Source0: tarantool-python-%{version}.tar.gz
66
License: BSD

tarantool/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
ENCODING_DEFAULT
2525
)
2626

27-
__version__ = "0.6.3"
27+
__version__ = "0.6.4"
2828

2929

3030
def connect(host="localhost", port=33013, user=None, password=None,

tarantool/connection.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,6 @@ def connect_tcp(self):
152152
if self._socket:
153153
self._socket.close()
154154
self._socket = socket.create_connection((self.host, self.port))
155-
self._socket.setsockopt(socket.SOL_TCP, socket.TCP_NODELAY, 1)
156155
except socket.error as e:
157156
self.connected = False
158157
raise NetworkError(e)

0 commit comments

Comments
 (0)