Skip to content

Commit 2bb581a

Browse files
committed
Bump version to 0.6.5
1 parent 9a0fbf2 commit 2bb581a

File tree

3 files changed

+23
-2
lines changed

3 files changed

+23
-2
lines changed

debian/changelog

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,24 @@
1+
tarantool-python (0.6.5-0) unstable; urgency=medium
2+
3+
## Breaking changes
4+
5+
This release should not break existing code.
6+
7+
## New features
8+
9+
* Added MeshConnection that allows to switch between nodes from a user
10+
provided list if a current node is down using round-robin strategy
11+
(#106).
12+
* Added connection_timeout parameter to Connection (#115).
13+
14+
## Bugfixes
15+
16+
* Fixed auto-reconnection in Connection.
17+
* Eliminated deprecation warnings on Python 3 (#114).
18+
* Add TCP_NODEPLAY back (it was removed in 0.6.4) (#127).
19+
20+
-- Alexander Turenko <[email protected]> Tue, 19 Mar 2019 03:40:01 +0300
21+
122
tarantool-python (0.6.4-0) unstable; urgency=medium
223

324
Release for PyPI which made Windows work again

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.4
3+
Version: 0.6.5
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
@@ -25,7 +25,7 @@
2525
ENCODING_DEFAULT
2626
)
2727

28-
__version__ = "0.6.4"
28+
__version__ = "0.6.5"
2929

3030

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

0 commit comments

Comments
 (0)