From d4b0eb58d4e92c9bd511f5b82e8be117b7f2724d Mon Sep 17 00:00:00 2001 From: Jason Derrett Date: Mon, 6 Jun 2016 08:51:18 -0500 Subject: [PATCH] Release 1.0.2 to support Service attributes --- CHANGELOG.md | 3 +++ librato/__init__.py | 2 +- setup.py | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ab11337..f0305fc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ ## Changelog +### Version 1.0.2 +* Added support for for Service attributes + ### Version 1.0.1 * Stream model supports all stream properties diff --git a/librato/__init__.py b/librato/__init__.py index 3c7609a..cd97c45 100644 --- a/librato/__init__.py +++ b/librato/__init__.py @@ -23,7 +23,7 @@ import re import six -__version__ = "1.0.1" +__version__ = "1.0.2" # Defaults HOSTNAME = "metrics-api.librato.com" diff --git a/setup.py b/setup.py index 679887a..468954d 100644 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ setup( name = "librato-metrics", - version = "1.0.1", # Update also in __init__ ; look into zest.releaser to avoid having two versions + version = "1.0.2", # 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",