Skip to content

Commit

Permalink
update version
Browse files Browse the repository at this point in the history
  • Loading branch information
VladaPetrovic committed Feb 9, 2017
1 parent 3231adb commit 7b46bca
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ Following guidelines of http://keepachangelog.com/

## [Unreleased]

## [2.1.0] - Feb 10, 2017
- Add support for python version 3.*

## [2.0.0] - Aug 19, 2016
- implement `GET /metrickeys`
- update `GET /lastpushes`
Expand Down Expand Up @@ -34,7 +37,8 @@ Following guidelines of http://keepachangelog.com/
## [0.1] - May 20, 2015
- Initial release

[Unreleased]: https://github.com/databox/databox-go/compare/2.0.0...master
[Unreleased]: https://github.com/databox/databox-go/compare/2.1.0...master
[2.1.0]: https://github.com/databox/databox-python/compare/2.0.0...2.1.0
[2.0.0]: https://github.com/databox/databox-python/compare/0.1.6...2.0.0
[0.1.6]: https://github.com/databox/databox-python/compare/0.1.5...0.1.6
[0.1.5]: https://github.com/databox/databox-python/compare/0.1.4...0.1.5
Expand Down
2 changes: 1 addition & 1 deletion databox/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from os import getenv
from json import dumps as json_dumps

__version__ = "2.0.0"
__version__ = "2.1.0"


class Client(object):
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@
license='MIT',
packages=find_packages(exclude=('databox test',)),
install_requires=[
'requests >= 2.7'
'requests >= 2.13'
]
)

0 comments on commit 7b46bca

Please sign in to comment.