Skip to content

Commit aa06e75

Browse files
committedMar 25, 2015
Bump version
1 parent 4914f31 commit aa06e75

File tree

3 files changed

+11
-21
lines changed

3 files changed

+11
-21
lines changed
 

‎debian/changelog

+8
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
tarantool-python (0.5.1-1) unstable; urgency=medium
2+
3+
* Fix minor bugs
4+
* Add eval tarantool command
5+
* Add autogenerated sync to package header
6+
7+
-- Eugine Blikh <bigbes@gmail.com> Wed, 24 Mar 2015 13:46:33 +0300
8+
19
tarantool-python (0.5.0-1) unstable; urgency=low
210

311
* source package automatically created by stdeb 0.6.0+git

‎debian/control

+2-20
Original file line numberDiff line numberDiff line change
@@ -9,23 +9,5 @@ Package: tarantool-python
99
Architecture: any
1010
Depends: ${misc:Depends}, python-all (>= 2.6.6-3), python-yaml, python-msgpack | msgpack-python
1111
Description: Python client library for Tarantool Database
12-
Python driver for Tarantool 1.6
13-
===============================
14-
.
15-
This package is a pure-python client library for `Tarantool`_.
16-
.
17-
`Documentation`_ | `Downloads`_ | `PyPI`_ | `GitHub`_ | `Issue tracker`_
18-
.
19-
.. _`Documentation`: http://tarantool-python.readthedocs.org/en/latest/
20-
.. _`Downloads`: http://pypi.python.org/pypi/tarantool#downloads
21-
.. _`PyPI`: http://pypi.python.org/pypi/tarantool
22-
.. _`GitHub`: https://github.com/tarantool/tarantool-python
23-
.. _`Issue tracker`: https://github.com/tarantool/tarantool-python/issues
24-
.
25-
Download and Install
26-
--------------------
27-
.
28-
The recommended way to install ``tarantool`` package is using PIP
29-
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
30-
.
31-
For Tarantool version < 1.6.0 you must get ``0.3.*`` connector version::
12+
Python driver for Tarantool 1.6
13+
This package is a pure-python client library for Tarantool.

‎tarantool/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# -*- coding: utf-8 -*-
22
# pylint: disable=C0301,W0105,W0401,W0614
33

4-
__version__ = "0.5.0"
4+
__version__ = "0.5.1"
55

66
from tarantool.connection import Connection
77
from tarantool.const import (

0 commit comments

Comments
 (0)
Please sign in to comment.