Skip to content

Commit a7fcb97

Browse files
committed
Bump version to 0.5.4 for PyPI
1 parent 23e5e79 commit a7fcb97

File tree

5 files changed

+11
-4
lines changed

5 files changed

+11
-4
lines changed

Makefile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ dist:
1010
python setup.py sdist --format=gztar,bztar,zip
1111
dist-upload:
1212
python setup.py sdist --format=gztar,bztar,zip upload
13+
dist-upload-2:
14+
python setup.py sdist --format=ztar upload
1315
docs:
1416
python setup.py build_sphinx
1517
docs-upload: docs

debian/changelog

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
tarantool-python (0.5.4-0) unstable; urgency=medium
2+
3+
Release for PyPO
4+
5+
-- Eugine Blikh <bigbes@gmail.com> Mon, 09 Feb 2016 20:19:33 +0300
6+
17
tarantool-python (0.5.3-0) unstable; urgency=medium
28

39
* Adding support for python3, again.
@@ -7,7 +13,6 @@ tarantool-python (0.5.3-0) unstable; urgency=medium
713
* Fix some errors
814
* Fix compatibility when migrating from 1.6.4 to 1.6.7 or more
915

10-
1116
-- Eugine Blikh <bigbes@gmail.com> Mon, 09 Feb 2016 19:17:33 +0300
1217

1318
tarantool-python (0.5.2-1) unstable; urgency=medium

rpm/tarantool-python.spec

Lines changed: 1 addition & 1 deletion
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.3
5+
Version: 0.5.4
66
Release: 1%{?dist}
77
Source0: tarantool-python-%{version}.tar.gz
88
License: BSD

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ def find_version(*file_paths):
7070
author_email="k.cherkasoff@gmail.com",
7171
url="https://github.com/tarantool/tarantool-python",
7272
license="BSD",
73-
description="Python client library for Tarantool Database",
73+
description="Python client library for Tarantool 1.6 Database",
7474
long_description=read('README.rst'),
7575
classifiers=[
7676
"Intended Audience :: Developers",

tarantool/__init__.py

Lines changed: 1 addition & 1 deletion
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.3"
4+
__version__ = "0.5.4"
55

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

0 commit comments

Comments
 (0)