From 2036bd90d0c2a024666cc108858fe4ae5bf2cd72 Mon Sep 17 00:00:00 2001 From: Jason Derrett Date: Wed, 6 Jul 2016 14:24:33 -0500 Subject: [PATCH] Release v1.0.4 --- 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 94cd714..5fe9f06 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ ## Changelog +### Version 1.0.4 +* Fix issue loading streams with gap_detection set; fix 403 error parsing + ### Version 1.0.3 * Adds missing property in streams diff --git a/librato/__init__.py b/librato/__init__.py index 271be94..4a3f2e8 100644 --- a/librato/__init__.py +++ b/librato/__init__.py @@ -23,7 +23,7 @@ import re import six -__version__ = "1.0.3" +__version__ = "1.0.4" # Defaults HOSTNAME = "metrics-api.librato.com" diff --git a/setup.py b/setup.py index 5730e56..87dd258 100644 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ setup( name = "librato-metrics", - version = "1.0.3", # Update also in __init__ ; look into zest.releaser to avoid having two versions + version = "1.0.4", # 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",