From a5b04852d952cc2ea49fd8765c9f7fc555ea7b05 Mon Sep 17 00:00:00 2001 From: David Rio Deiros Date: Fri, 24 Jun 2016 11:11:19 +0200 Subject: [PATCH] New release --- 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 f0305fc..94cd714 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ ## Changelog +### Version 1.0.3 +* Adds missing property in streams + ### Version 1.0.2 * Added support for for Service attributes diff --git a/librato/__init__.py b/librato/__init__.py index cd97c45..271be94 100644 --- a/librato/__init__.py +++ b/librato/__init__.py @@ -23,7 +23,7 @@ import re import six -__version__ = "1.0.2" +__version__ = "1.0.3" # Defaults HOSTNAME = "metrics-api.librato.com" diff --git a/setup.py b/setup.py index 468954d..5730e56 100644 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ setup( name = "librato-metrics", - version = "1.0.2", # Update also in __init__ ; look into zest.releaser to avoid having two versions + version = "1.0.3", # 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",