Skip to content

Commit 2c502ed

Browse files
committed
Bump version to 0.5.3
1 parent f557b9e commit 2c502ed

File tree

4 files changed

+14
-3
lines changed

4 files changed

+14
-3
lines changed

debian/changelog

+12
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
tarantool-python (0.5.3-1) unstable; urgency=medium
2+
3+
* Adding support for python3, again.
4+
* Update docstrings for tarantool.Connection and tarnatool.Space mehods
5+
* Modify tarantool.Space methods for simplicity
6+
* Add support for Upsert command
7+
* Fix some errors
8+
* Fix compatibility when migrating from 1.6.4 to 1.6.7 or more
9+
10+
11+
-- Eugine Blikh <[email protected]> Mon, 09 Feb 2016 19:17:33 +0300
12+
113
tarantool-python (0.5.2-1) unstable; urgency=medium
214

315
* Fix minor bugs

rpm/tarantool-python.spec

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Summary: Python client library for Tarantool Database
44
Name: %{name}
5-
Version: 0.5.2
5+
Version: 0.5.3
66
Release: 1%{?dist}
77
Source0: tarantool-python-%{version}.tar.gz
88
License: BSD

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.2"
4+
__version__ = "0.5.3"
55

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

tarantool/schema.py

-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@ def __init__(self, index_row, space):
2626
else:
2727
for i in range(index_row[5]):
2828
self.parts.append((index_row[5 + 1 + i * 2], index_row[5 + 2 + i * 2]))
29-
sel
3029
self.space = space
3130
self.space.indexes[self.iid] = self
3231
if self.name:

0 commit comments

Comments
 (0)