diff --git a/debian/changelog b/debian/changelog index bcce55a3..6ea23471 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,12 @@ +tarantool-python (0.7.1-0) unstable; urgency=medium + + ## Overview + + It is pure technical release. It fixes the dependency on the msgpack + library. + + -- Alexander Turenko Mon, 28 Dec 2020 04:01:30 +0300 + tarantool-python (0.7.0-0) unstable; urgency=medium ## Overview diff --git a/rpm/tarantool-python.spec b/rpm/tarantool-python.spec index ca99fcd9..2bc0f7e7 100644 --- a/rpm/tarantool-python.spec +++ b/rpm/tarantool-python.spec @@ -1,6 +1,6 @@ Summary: Python client library for Tarantool Database Name: tarantool-python -Version: 0.7.0 +Version: 0.7.1 Release: 1%{?dist} Source0: tarantool-python-%{version}.tar.gz License: BSD diff --git a/setup.py b/setup.py index 763872ca..c17634f6 100755 --- a/setup.py +++ b/setup.py @@ -83,6 +83,6 @@ def find_version(*file_paths): cmdclass=cmdclass, command_options=command_options, install_requires=[ - 'msgpack-python>=0.4', + 'msgpack>=0.4.0', ] ) diff --git a/tarantool/__init__.py b/tarantool/__init__.py index 94132904..8ae0c44c 100644 --- a/tarantool/__init__.py +++ b/tarantool/__init__.py @@ -25,7 +25,7 @@ ENCODING_DEFAULT ) -__version__ = "0.7.0" +__version__ = "0.7.1" def connect(host="localhost", port=33013, user=None, password=None,