Skip to content

pypi: correct msgpack library name, bump 0.7.1 #185

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Dec 28, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -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 <[email protected]> Mon, 28 Dec 2020 04:01:30 +0300

tarantool-python (0.7.0-0) unstable; urgency=medium

## Overview
Expand Down
2 changes: 1 addition & 1 deletion rpm/tarantool-python.spec
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
]
)
2 changes: 1 addition & 1 deletion tarantool/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
ENCODING_DEFAULT
)

__version__ = "0.7.0"
__version__ = "0.7.1"


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