From 4dea891bf1f8fbd1b53333732de2a75840dc8071 Mon Sep 17 00:00:00 2001 From: David Rio Deiros Date: Thu, 25 Aug 2016 15:03:22 -0400 Subject: [PATCH] Bump to 2.0.0 --- CHANGELOG.md | 5 +++++ librato/__init__.py | 2 +- setup.py | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 60c1140..e0b426e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ ## Changelog +### Version 2.0.0 +* Multi Dimension support +* pep8 compliant +* All that thanks to @vaidy4github great work + ### Version 1.0.7 * Better response handling (Thanks @jhaegg). diff --git a/librato/__init__.py b/librato/__init__.py index 1aea95e..2646d87 100644 --- a/librato/__init__.py +++ b/librato/__init__.py @@ -42,7 +42,7 @@ from librato.annotations import Annotation from librato.spaces import Space, Chart -__version__ = "1.0.7" +__version__ = "2.0.0" # Defaults HOSTNAME = "metrics-api.librato.com" diff --git a/setup.py b/setup.py index d1053bd..f921ecc 100644 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ setup( name="librato-metrics", - version="1.0.7", # Update also in __init__ ; look into zest.releaser to avoid having two versions + version="2.0.0", # Update also in __init__ ; look into zest.releaser to avoid having two versions description="Python API Wrapper for Librato", long_description="Python Wrapper for the Librato Metrics API: http://dev.librato.com/v1/metrics", author="Librato",