Skip to content

Commit 7b46bca

Browse files
committed
update version
1 parent 3231adb commit 7b46bca

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@ Following guidelines of http://keepachangelog.com/
33

44
## [Unreleased]
55

6+
## [2.1.0] - Feb 10, 2017
7+
- Add support for python version 3.*
8+
69
## [2.0.0] - Aug 19, 2016
710
- implement `GET /metrickeys`
811
- update `GET /lastpushes`
@@ -34,7 +37,8 @@ Following guidelines of http://keepachangelog.com/
3437
## [0.1] - May 20, 2015
3538
- Initial release
3639

37-
[Unreleased]: https://github.com/databox/databox-go/compare/2.0.0...master
40+
[Unreleased]: https://github.com/databox/databox-go/compare/2.1.0...master
41+
[2.1.0]: https://github.com/databox/databox-python/compare/2.0.0...2.1.0
3842
[2.0.0]: https://github.com/databox/databox-python/compare/0.1.6...2.0.0
3943
[0.1.6]: https://github.com/databox/databox-python/compare/0.1.5...0.1.6
4044
[0.1.5]: https://github.com/databox/databox-python/compare/0.1.4...0.1.5

databox/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
from os import getenv
44
from json import dumps as json_dumps
55

6-
__version__ = "2.0.0"
6+
__version__ = "2.1.0"
77

88

99
class Client(object):

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@
1414
license='MIT',
1515
packages=find_packages(exclude=('databox test',)),
1616
install_requires=[
17-
'requests >= 2.7'
17+
'requests >= 2.13'
1818
]
1919
)

0 commit comments

Comments
 (0)